16 lines
323 B
C#
16 lines
323 B
C#
using demo_trade.Data.RemoteData.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Dynamic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace demo_trade.Data.Repository
|
|
{
|
|
public interface IPickupRepository
|
|
{
|
|
List<PickupPoint> GetAllPickupPoints();
|
|
}
|
|
}
|