17 lines
606 B
C#
17 lines
606 B
C#
using PrecastConcretePlantContracts.BindingModels;
|
|
using PrecastConcretePlantContracts.SearchModels;
|
|
using PrecastConcretePlantContracts.ViewModels;
|
|
|
|
namespace PrecastConcretePlantContracts.StoragesContract
|
|
{
|
|
public interface IOrderStorage
|
|
{
|
|
List<OrderViewModel> GetFullList();
|
|
List<OrderViewModel> GetFilteredList(OrderSearchModel model);
|
|
OrderViewModel? GetElement(OrderSearchModel model);
|
|
OrderViewModel? Insert(OrderBindingModel model);
|
|
OrderViewModel? Update(OrderBindingModel model);
|
|
OrderViewModel? Delete(OrderBindingModel model);
|
|
}
|
|
}
|