21 lines
715 B
C#
21 lines
715 B
C#
using ComputerShopContracts.BindingModels;
|
|
using ComputerShopContracts.SearchModels;
|
|
using ComputerShopContracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComputerShopContracts.BusinessLogicContracts
|
|
{
|
|
public interface IEquipmentReceivingLogic
|
|
{
|
|
List<EquipmentReceivingViewModel>? ReadList(EquipmentReceivingSearchModel? model);
|
|
bool CreateOrder(EquipmentReceivingBindingModel model);
|
|
bool TakeOrderInWork(EquipmentReceivingBindingModel model);
|
|
bool FinishOrder(EquipmentReceivingBindingModel model);
|
|
bool DeliveryOrder(EquipmentReceivingBindingModel model);
|
|
}
|
|
}
|