feat: add contracting party response class and update endpoints for institution contract creation

This commit is contained in:
2025-12-30 19:51:28 +03:30
parent 9bbdff9bc6
commit d663857de1
5 changed files with 18 additions and 8 deletions

View File

@@ -307,6 +307,11 @@ public interface IInstitutionContractApplication
Task<OperationResult> CreationComplete(InstitutionContractExtensionCompleteRequest request);
}
public class CreationSetContractingPartyResponse
{
public long RepresentativeId { get; set; }
}
public class InstitutionContractCreationWorkshopsResponse
{
public List<WorkshopTempViewModel> WorkshopTemps { get; set; }

View File

@@ -33,5 +33,5 @@ public class InstitutionContractPaymentOneTimeViewModel
}
public class InstitutionContractPaymentMonthlyViewModel:InstitutionContractPaymentOneTimeViewModel
{
public List<MonthlyInstallment> Installments { get; set; }
public List<MonthlyInstallment> Installments { get; set; } = [];
}