23 lines
721 B
C#
23 lines
721 B
C#
using CanteenContracts.BindingModels;
|
|
using CanteenContracts.SearchModel;
|
|
using CanteenContracts.View;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CanteenContracts.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);
|
|
OrderViewModel? AddCook(CookBindingModel model);
|
|
}
|
|
}
|