2024-04-07 16:54:02 +04:00
|
|
|
|
using SoftwareInstallationContracts.BindingModels;
|
|
|
|
|
using SoftwareInstallationContracts.SearchModels;
|
|
|
|
|
using SoftwareInstallationContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SoftwareInstallationContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
List<OrderViewModel>? ReadList(OrderSearchModel? model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
bool CreateOrder(OrderBindingModel model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
bool TakeOrderInWork(OrderBindingModel model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
bool FinishOrder(OrderBindingModel model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
bool DeliveryOrder(OrderBindingModel model);
|
|
|
|
|
}
|
2024-05-12 14:38:32 +04:00
|
|
|
|
}
|