CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/BusinessLogicContracts/IEquipmentReceivingLogic.cs
2023-05-20 00:08:47 +04:00

20 lines
634 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 Create(EquipmentReceivingBindingModel model);
bool TakeInWork(EquipmentReceivingBindingModel model);
bool Finish(EquipmentReceivingBindingModel model);
}
}