16 lines
514 B
C#
16 lines
514 B
C#
using TransportCompanyContracts.BindingModels;
|
|
using TransportCompanyContracts.SearchModels;
|
|
using TransportCompanyContracts.ViewModels;
|
|
|
|
namespace TransportCompanyContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IPointLogic
|
|
{
|
|
List<PointViewModel>? ReadList(PointSearchModel? model);
|
|
PointViewModel? ReadElement(PointSearchModel model);
|
|
bool Create(PointBindingModel model);
|
|
bool Update(PointBindingModel model);
|
|
bool Delete(PointBindingModel model);
|
|
}
|
|
}
|