ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceContracts/BusinessLogicsContracts/IWorkPaymentLogic.cs

16 lines
499 B
C#
Raw Normal View History

using CarServiceContracts.BindingModels;
using CarServiceContracts.SearchModels;
using CarServiceContracts.ViewModels;
namespace CarServiceContracts.BusinessLogicsContracts
{
public interface IWorkPaymentLogic
{
List<WorkPaymentViewModel>? ReadList(WorkPaymentSearchModel? model);
WorkPaymentViewModel? ReadElement(WorkPaymentSearchModel model);
bool Create(WorkPaymentBindingModel model);
bool Update(WorkPaymentBindingModel model);
bool Delete(WorkPaymentBindingModel model);
}
}