16 lines
474 B
C#
16 lines
474 B
C#
using ServiceStationContracts.BindingModels;
|
|
using ServiceStationContracts.SearchModels;
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
|
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|
{
|
|
public interface IClintWorkLogic
|
|
{
|
|
List<ClientWorkViewModel>? ReadList(ClientWorkSearchModel? model);
|
|
bool Create(ClientWorkBindingModel model);
|
|
bool Update(ClientWorkBindingModel model);
|
|
bool Delete(ClientWorkBindingModel model);
|
|
}
|
|
}
|