20 lines
634 B
C#
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);
|
|
}
|
|
}
|