16 lines
474 B
C#
Raw Normal View History

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