14 lines
472 B
C#
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);
|
|
}
|
|
} |