2024-04-27 12:35:20 +04:00
|
|
|
|
using Contracts.BindingModels;
|
|
|
|
|
using Contracts.SearchModels;
|
|
|
|
|
using Contracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace Contracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IGuarantorLogic
|
|
|
|
|
{
|
2024-04-27 20:23:32 +04:00
|
|
|
|
List<GuarantorViewModel>? ReadList(GuarantorSearchModel? model);
|
|
|
|
|
GuarantorViewModel? ReadElement(GuarantorSearchModel? model);
|
|
|
|
|
bool Create(GuarantorBindingModel? model);
|
|
|
|
|
bool Update(GuarantorBindingModel? model);
|
|
|
|
|
bool Delete(GuarantorBindingModel? model);
|
2024-04-27 12:35:20 +04:00
|
|
|
|
}
|
|
|
|
|
}
|