48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using CompanyManagment.App.Contracts.InsuranceList.Enums;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace CompanyManagment.App.Contracts.InsuranceList;
|
|
|
|
public class InsuranceListConfirmOperation
|
|
{
|
|
public long InsuranceListId { get; set; }
|
|
/// <summary>
|
|
/// بازرسی
|
|
/// </summary>
|
|
public CreateInsuranceListInspection Inspection { get; set; }
|
|
/// <summary>
|
|
/// بدهی
|
|
/// </summary>
|
|
public CreateInsuranceListDebt Debt { get; set; }
|
|
/// <summary>
|
|
/// تاییدیه کارفرما
|
|
/// </summary>
|
|
public CreateInsuranceListApproval Approval { get; set; }
|
|
public bool ConfirmSentList { get; set; }
|
|
}
|
|
public class CreateInsuranceListApproval
|
|
{
|
|
public InsuranceListEmployerApprovalStatus ApprovalStatus { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
|
|
public class CreateInsuranceListDebt
|
|
{
|
|
public InsuranceListDebtType Type { get; set; }
|
|
public string DebtDate { get; set; }
|
|
public string Amount { get; set; }
|
|
public IFormFile DebtFile { get; set; }
|
|
public long DebtFileMediaId { get; set; }
|
|
public string FilePath { get; set; }
|
|
}
|
|
|
|
public class CreateInsuranceListInspection
|
|
{
|
|
public InsuranceListInspectionType Type { get; set; }
|
|
public string LastInspectionDate { get; set; }
|
|
public IFormFile InspectionFile { get; set; }
|
|
public long InspectionFileMediaId { get; set; }
|
|
public string FilePath { get; set; }
|
|
|
|
|
|
} |