2023-01-29 22:45:01 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-01-30 14:48:39 +04:00
|
|
|
|
using SofrwareInstallationContracts.BindingModels;
|
|
|
|
|
using SofrwareInstallationContracts.BusinessLogicsContracts;
|
|
|
|
|
using SofrwareInstallationContracts.SearchModels;
|
|
|
|
|
using SofrwareInstallationContracts.StoragesContracts;
|
|
|
|
|
using SofrwareInstallationContracts.ViewModels;
|
2023-01-29 22:45:01 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
2023-01-30 14:48:39 +04:00
|
|
|
|
namespace SoftwareInstallationBusinessLogic.BusinessLogic
|
2023-01-29 22:45:01 +04:00
|
|
|
|
{
|
|
|
|
|
public class OrderLogic : IOrderLogic
|
|
|
|
|
{
|
|
|
|
|
public bool CreateOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool DeliveryOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool FinishOrder(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<OrderViewModel>? ReadList(OrderSearchModel? model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool TakeOrderInWork(OrderBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|