22 lines
655 B
C#
22 lines
655 B
C#
using Subd_4.BindingModels;
|
|
using Subd_4.SearchModels;
|
|
using Subd_4.ViewModels;
|
|
|
|
namespace Subd_4.StoragesContracts
|
|
{
|
|
public interface IConstructionMaterialStorage
|
|
{
|
|
List<ConstructionMaterialViewModel> GetFullList();
|
|
|
|
List<ConstructionMaterialViewModel> GetFilteredList(ConstructionMaterialSearchModel model);
|
|
|
|
ConstructionMaterialViewModel? GetElement(ConstructionMaterialSearchModel model);
|
|
|
|
ConstructionMaterialViewModel? Insert(ConstructionMaterialBindingModel model);
|
|
|
|
ConstructionMaterialViewModel? Update(ConstructionMaterialBindingModel model);
|
|
|
|
ConstructionMaterialViewModel? Delete(ConstructionMaterialBindingModel model);
|
|
}
|
|
}
|