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? 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(); } } }