41 lines
1.1 KiB
C#
Raw Normal View History

2023-05-19 19:34:21 +04:00
using ComputerShopContracts.BindingModels;
using ComputerShopContracts.BusinessLogicContracts;
using ComputerShopContracts.SearchModels;
using ComputerShopContracts.ViewModels;
using System;
2023-05-17 14:20:02 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopBusinessLogic.BusinessLogics
{
2023-05-19 19:34:21 +04:00
public class EquipmentReceivingLogic : IEquipmentReceivingLogic
2023-05-17 14:20:02 +04:00
{
2023-05-19 19:34:21 +04:00
public List<EquipmentReceivingViewModel>? ReadList(EquipmentReceivingSearchModel? model)
{
throw new NotImplementedException();
}
public bool CreateOrder(EquipmentReceivingBindingModel model)
{
throw new NotImplementedException();
}
public bool TakeOrderInWork(EquipmentReceivingBindingModel model)
{
throw new NotImplementedException();
}
public bool FinishOrder(EquipmentReceivingBindingModel model)
{
throw new NotImplementedException();
}
public bool DeliveryOrder(EquipmentReceivingBindingModel model)
{
throw new NotImplementedException();
}
2023-05-17 14:20:02 +04:00
}
}