15 lines
490 B
C#
15 lines
490 B
C#
using ServiceStationContracts.BindingModels;
|
|
using ServiceStationContracts.SearchModels;
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|
{
|
|
public interface ICategoryWorkLogic
|
|
{
|
|
List<CategoryWorkViewModel>? ReadList(CategoryWorkSearchModel? model);
|
|
bool Create(CategoryWorkBindingModel? model);
|
|
bool Update(CategoryWorkBindingModel? model);
|
|
bool Delete(CategoryWorkBindingModel? model);
|
|
}
|
|
}
|