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

17 lines
583 B
C#
Raw Normal View History

2024-04-22 15:11:47 +04:00
using ConstructionCompanyContracts.BindingModels;
using ConstructionCompanyContracts.SearchModels;
using ConstructionCompanyContracts.ViewModels;
namespace ConstructionCompanyContracts.BusinessLogicsContracts
{
public interface IConstructionLogic
{
List<ConstructionViewModel>? ReadList(ConstructionSearchModel? model);
ConstructionViewModel? ReadElement(ConstructionSearchModel model);
bool Create(ConstructionBindingModel model);
bool Update(ConstructionBindingModel model);
bool Delete(ConstructionBindingModel model);
}
}