2023-01-31 13:10:23 +04:00
|
|
|
|
using SofrwareInstallationContracts.BindingModels;
|
2023-01-30 14:48:39 +04:00
|
|
|
|
using SofrwareInstallationContracts.SearchModels;
|
|
|
|
|
using SofrwareInstallationContracts.ViewModels;
|
2023-01-29 22:45:01 +04:00
|
|
|
|
|
2023-01-30 14:48:39 +04:00
|
|
|
|
namespace SofrwareInstallationContracts.BusinessLogicsContracts
|
2023-01-29 22:45:01 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
List<OrderViewModel>? ReadList(OrderSearchModel? model);
|
2023-04-10 23:07:27 +04:00
|
|
|
|
OrderViewModel? ReadElement(OrderSearchModel model);
|
2023-01-29 22:45:01 +04:00
|
|
|
|
bool CreateOrder(OrderBindingModel model);
|
|
|
|
|
bool TakeOrderInWork(OrderBindingModel model);
|
|
|
|
|
bool FinishOrder(OrderBindingModel model);
|
|
|
|
|
bool DeliveryOrder(OrderBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|