56 lines
1.7 KiB
C#
56 lines
1.7 KiB
C#
namespace CompanyManagement.Infrastructure.Excel.Checkout;
|
|
|
|
public class CustomizeCheckoutTempExcelViewModel
|
|
{
|
|
public string Month { get; set; }
|
|
public string Year { get; set; }
|
|
|
|
public long EmployeeId { get; set; }
|
|
public string EmployeeFName { get; set; }
|
|
public string EmployeeLName { get; set; }
|
|
public string EmployeeFullName => $"{EmployeeFName} {EmployeeLName}";
|
|
public string NationalCode { get; set; }
|
|
public long PersonnelCode { get; set; }
|
|
public string PersonnelCodeString => PersonnelCode.ToString();
|
|
|
|
|
|
public string SumOfWorkingDays { get; set; }
|
|
|
|
|
|
public string MonthlySalary { get; set; }
|
|
public string BaseYearsPay { get; set; }
|
|
|
|
public string MarriedAllowance { get; set; }
|
|
public string OvertimePay { get; set; }
|
|
public string NightworkPay { get; set; }
|
|
public string FridayPay { get; set; }
|
|
public string MissionPay { get; set; }
|
|
public string ShiftPay { get; set; }
|
|
public string FamilyAllowance { get; set; }
|
|
public string BonusesPay { get; set; }
|
|
public string LeavePay { get; set; }
|
|
public string RewardPay { get; set; }
|
|
|
|
|
|
public string FineDeduction { get; set; }
|
|
public string InsuranceDeduction { get; set; }
|
|
public string TaxDeducation { get; set; }
|
|
public string InstallmentDeduction { get; set; }
|
|
public string SalaryAidDeduction { get; set; }
|
|
public string AbsenceDeduction { get; set; }
|
|
public string EarlyExitDeduction { get; set; }
|
|
public string LateToWorkDeduction { get; set; }
|
|
|
|
|
|
public string TotalClaims { get; set; }
|
|
public string TotalDeductions { get; set; }
|
|
public string TotalPayment { get; set; }
|
|
|
|
public string BankAccountNumber { get; set; }
|
|
public string CardNumber { get; set; }
|
|
public string ShebaNumber { get; set; }
|
|
|
|
public string BankName { get; set; }
|
|
|
|
|
|
} |