15 lines
487 B
C#
15 lines
487 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);
|
|
}
|
|
}
|