16 lines
525 B
C#
16 lines
525 B
C#
|
using AbstractSushiBarContracts.BindingModels;
|
|||
|
using AbstractSushiBarContracts.SearchModels;
|
|||
|
using AbstractSushiBarContracts.ViewModels;
|
|||
|
|
|||
|
namespace AbstractSushiBarContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IOrderLogic
|
|||
|
{
|
|||
|
List<OrderViewModel>? ReadList(OrderSearchModel? model);
|
|||
|
bool CreateOrder(OrderBindingModel model);
|
|||
|
bool TakeOrderInWork(OrderBindingModel model);
|
|||
|
bool FinishOrder(OrderBindingModel model);
|
|||
|
bool DeliveryOrder(OrderBindingModel model);
|
|||
|
}
|
|||
|
}
|