add Services and updat get list institutioncontract

This commit is contained in:
2025-09-22 14:45:19 +03:30
parent df00f5cbac
commit 79b14ec958
10 changed files with 11441 additions and 83 deletions

View File

@@ -85,4 +85,24 @@ public class GetInstitutionContractListItemsViewModel
public bool IsExpired { get; set; }
public long ContractingPartyId { get; set; }
public List<InstitutionContractListWorkshop> Workshops { get; set; }
}
public class InstitutionContractListWorkshop
{
public string WorkshopName { get; set; }
public int EmployeeCount { get; set; }
public WorkshopServicesViewModel WorkshopServices { get; set; }
}
public class WorkshopServicesViewModel
{
public bool Insurance { get; set; }
public bool InsuranceInPerson { get; set; }
public bool Contract { get; set; }
public bool ContractInPerson { get; set; }
public bool RollCall { get; set; }
public bool RollCallInPerson { get; set; }
public bool CustomizeCheckout { get; set; }
}