63 lines
2.0 KiB
C#
63 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Checkout;
|
|
|
|
public class CheckoutSearchModel
|
|
{
|
|
public string EmployeeFullName { get; set; }
|
|
public string FathersName { get; set; }
|
|
public string NationalCode { get; set; }
|
|
public string DateOfBirth { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
|
|
public string WorkshopName { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
|
|
public string ContractNo { get; set; }
|
|
public string ContractStart { get; set; }
|
|
public string ContractEnd { get; set; }
|
|
public string Month { get; set; }
|
|
public string Year { get; set; }
|
|
public long ContractId { get; set; }
|
|
|
|
public long WorkingHoursId { get; set; }
|
|
|
|
public double MonthlySalary { get; set; }
|
|
public double BaseYearsPay { get; set; }
|
|
public double ConsumableItems { get; set; }
|
|
public double HousingAllowance { get; set; }
|
|
public double OvertimePay { get; set; }
|
|
public double NightworkPay { get; set; }
|
|
public double FridayPay { get; set; }
|
|
public double MissionPay { get; set; }
|
|
public double ShiftPay { get; set; }
|
|
public double FamilyAllowance { get; set; }
|
|
public double BonusesPay { get; set; }
|
|
public double YearsPay { get; set; }
|
|
public double LeavePay { get; set; }
|
|
public double RewardPay { get; set; }
|
|
public double InsuranceDeduction { get; set; }
|
|
public double TaxDeducation { get; set; }
|
|
public double InstallmentDeduction { get; set; }
|
|
public double SalaryAidDeduction { get; set; }
|
|
|
|
public double AbsenceDeduction { get; set; }
|
|
|
|
public string TotalClaims { get; set; }
|
|
public string TotalDeductions { get; set; }
|
|
|
|
public double TotalPayment { get; set; }
|
|
|
|
public string IsActiveString { get; set; }
|
|
public string Signature { get; set; }
|
|
|
|
public long EmployerId { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string Sorting { get; set; }
|
|
public int PageIndex { get; set; }
|
|
|
|
public bool SearchAll { get; set; }
|
|
|
|
|
|
} |