2023-05-02 22:51:41 +04:00
|
|
|
|
using RestaurantContracts.BindingModels;
|
|
|
|
|
using RestaurantContracts.SearchModels;
|
|
|
|
|
using RestaurantContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace RestaurantContracts.StoragesContracts
|
|
|
|
|
{
|
|
|
|
|
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);
|
2023-05-17 00:48:03 +04:00
|
|
|
|
|
|
|
|
|
string SetTest(int count);
|
|
|
|
|
string GetTest(int count);
|
|
|
|
|
string DiffGetTest(int count);
|
|
|
|
|
bool ClearList();
|
2023-05-02 22:51:41 +04:00
|
|
|
|
}
|
|
|
|
|
}
|