using ConstructionCompanyContracts.BindingModels; using ConstructionCompanyContracts.SearchModels; using ConstructionCompanyContracts.ViewModels; namespace ConstructionCompanyContracts.BusinessLogicsContracts { public interface IPointLogic { List? ReadList(PointSearchModel? model); PointViewModel? ReadElement(PointSearchModel model); bool Create(PointBindingModel model); bool Update(PointBindingModel model); bool Delete(PointBindingModel model); } }