SYBD_2024/Subd-4/BusinessLogicContracts/IConstructionMaterialLogic.cs

16 lines
518 B
C#

using Subd_4.BindingModels;
using Subd_4.SearchModels;
using Subd_4.ViewModels;
namespace Subd_4.BusinessLogicContracts
{
public interface IConstructionMaterialLogic
{
List<ConstructionMaterialViewModel>? ReadList(ConstructionMaterialSearchModel? model);
ConstructionMaterialViewModel? ReadElement(ConstructionMaterialSearchModel model);
bool Create(ConstructionMaterialBindingModel model);
bool Update(ConstructionMaterialBindingModel model);
bool Delete(ConstructionMaterialBindingModel model);
}
}