2024-04-30 01:41:35 +03:00
|
|
|
|
using ServiceStationContracts.BindingModels;
|
|
|
|
|
using ServiceStationContracts.SearchModels;
|
|
|
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface ICategoryWorkLogic
|
|
|
|
|
{
|
|
|
|
|
List<CategoryWorkViewModel>? ReadList(CategoryWorkSearchModel? model);
|
2024-04-30 20:49:31 +03:00
|
|
|
|
bool Create(CategoryWorkBindingModel model);
|
|
|
|
|
bool Update(CategoryWorkBindingModel model);
|
|
|
|
|
bool Delete(CategoryWorkBindingModel model);
|
2024-04-30 01:41:35 +03:00
|
|
|
|
}
|
|
|
|
|
}
|