17 lines
559 B
C#
17 lines
559 B
C#
|
using SushiBarContracts.BindingModels;
|
|||
|
using SushiBarContracts.SearchModels;
|
|||
|
using SushiBarContracts.ViewModels;
|
|||
|
|
|||
|
namespace SushiBarContracts.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);
|
|||
|
}
|
|||
|
}
|