16 lines
493 B
C#
16 lines
493 B
C#
|
using SushiContracts.BindingModels;
|
|||
|
using SushiContracts.SearchModels;
|
|||
|
using SushiContracts.ViewModels;
|
|||
|
|
|||
|
namespace SushiContracts.BusinessLogicContracts
|
|||
|
{
|
|||
|
public interface IEmployeeLogic
|
|||
|
{
|
|||
|
List<EmployeeViewModel>? ReadList(EmployeeSearchModel? model);
|
|||
|
EmployeeViewModel? ReadElement(EmployeeSearchModel model);
|
|||
|
bool Create(EmployeeBindingModel model);
|
|||
|
bool Update(EmployeeBindingModel model);
|
|||
|
bool Delete(EmployeeBindingModel model);
|
|||
|
}
|
|||
|
}
|