2024-02-05 16:40:47 +04:00
|
|
|
|
using SushiBarContracts.BindingModels;
|
|
|
|
|
using SushiBarContracts.SearchModels;
|
|
|
|
|
using SushiBarContracts.ViewModels;
|
2024-02-05 16:26:35 +04:00
|
|
|
|
|
2024-02-05 16:40:47 +04:00
|
|
|
|
namespace SushiBarContracts.StoragesContracts
|
2024-02-05 16:26:35 +04:00
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|