PIbd-23_Elatomtsev_L.K._SUB.../DeviceContracts/BusinessLogicsContracts/IStaffLogic.cs
2024-05-13 09:00:08 +04:00

14 lines
472 B
C#

using DeviceContracts.BindingModels;
using DeviceContracts.SearchModels;
using DeviceContracts.ViewModels;
namespace DeviceContracts.BusinessLogicsContracts
{
public interface IStaffLogic
{
List<StaffViewModel>? ReadList(StaffSearchModel? model);
StaffViewModel? ReadElement(StaffSearchModel model);
bool Create(StaffBindingModel model);
bool Update(StaffBindingModel model);
bool Delete(StaffBindingModel model);
}
}