17 lines
527 B
C#
17 lines
527 B
C#
using ConstructionCompanyContracts.BindingModels;
|
|
using ConstructionCompanyContracts.SearchModels;
|
|
using ConstructionCompanyContracts.ViewModels;
|
|
|
|
namespace ConstructionCompanyContracts.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);
|
|
}
|
|
}
|
|
|