PIbd-23_Yakobchuk_S.V._SUBD/ConstructionCompany/ConstructionCompanyContracts/BusinessLogicsContracts/IPointLogic.cs

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);
}
}