2023-04-07 10:55:40 +04:00
|
|
|
|
using CanteenContracts.BindingModels;
|
|
|
|
|
using CanteenContracts.SearchModel;
|
2023-04-09 13:00:51 +04:00
|
|
|
|
using CanteenContracts.SearchModels;
|
2023-04-07 10:55:40 +04:00
|
|
|
|
using CanteenContracts.View;
|
2023-04-09 13:00:51 +04:00
|
|
|
|
using CanteenContracts.ViewModels;
|
2023-04-07 10:55:40 +04:00
|
|
|
|
using System;
|
2023-04-06 14:34:58 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CanteenContracts.StoragesContracts
|
|
|
|
|
{
|
2023-04-07 10:55:40 +04:00
|
|
|
|
public interface IOrderStorage
|
2023-04-06 14:34:58 +04:00
|
|
|
|
{
|
2023-04-07 10:55:40 +04:00
|
|
|
|
List<OrderViewModel> GetFullList();
|
|
|
|
|
List<OrderViewModel> GetFilteredList(OrderSearchModel model);
|
|
|
|
|
OrderViewModel? GetElement(OrderSearchModel model);
|
2023-04-09 13:00:51 +04:00
|
|
|
|
OrderCookViewModel? GetOrderCookElement(OrderCookSearchModel model);
|
2023-04-07 10:55:40 +04:00
|
|
|
|
OrderViewModel? Insert(OrderBindingModel model);
|
|
|
|
|
OrderViewModel? Update(OrderBindingModel model);
|
|
|
|
|
OrderViewModel? Delete(OrderBindingModel model);
|
2023-04-09 00:34:25 +04:00
|
|
|
|
bool AddCook(OrderCookBindingModel model);
|
|
|
|
|
bool AddTableware(OrderTablewareBindingModel model);
|
2023-04-06 14:34:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|