41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using ComputerShopContracts.BindingModels;
|
|
using ComputerShopContracts.BusinessLogicContracts;
|
|
using ComputerShopContracts.SearchModels;
|
|
using ComputerShopContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComputerShopBusinessLogic.BusinessLogics
|
|
{
|
|
public class EquipmentReceivingLogic : IEquipmentReceivingLogic
|
|
{
|
|
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();
|
|
}
|
|
}
|
|
}
|