15 lines
444 B
C#
15 lines
444 B
C#
|
using ServiceStationContracts.BindingModels;
|
|||
|
using ServiceStationContracts.SearchModels;
|
|||
|
using ServiceStationContracts.ViewModels;
|
|||
|
|
|||
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|||
|
{
|
|||
|
public interface IWorkLogic
|
|||
|
{
|
|||
|
List<WorkViewModel> ReadList(WorkSearchModel? model = null);
|
|||
|
bool Create(WorkBindingModel model);
|
|||
|
bool Update(WorkBindingModel model);
|
|||
|
bool Delete(WorkBindingModel model);
|
|||
|
}
|
|||
|
}
|