17 lines
583 B
C#
17 lines
583 B
C#
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);
|
|
}
|
|
}
|
|
|