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