28 lines
1002 B
C#
28 lines
1002 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InsitutionContractAmendmentPaymentResponse
|
|
{
|
|
public List<InsitutionContractAmendmentPaymentWorkshopResponse> workshops { get; set; }
|
|
public InstitutionContractPaymentOneTimeViewModel OneTime { get; set; }
|
|
public InstitutionContractPaymentMonthlyViewModel Monthly { get; set; }
|
|
public string ContractStart { get; set; }
|
|
public string ContractEnd { get; set; }
|
|
public string OneMonthAmount { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
}
|
|
|
|
public class InsitutionContractAmendmentPaymentWorkshopResponse
|
|
{
|
|
public string WorkshopName { get; set; }
|
|
public WorkshopServicesViewModel OldServices { get; set; }
|
|
public WorkshopServicesViewModel NewServices { get; set; }
|
|
|
|
public bool IsNewWorkshop { get; set; }
|
|
|
|
public int PrevPersonnelCount { get; set; }
|
|
public int NewPersonnelCount { get; set; }
|
|
|
|
public double Price { get; set; }
|
|
} |