CEL_Payroll/Payroll.BO/Common/DataIntegration.cs

66 lines
2.7 KiB
C#
Raw Permalink Normal View History

2024-09-17 14:30:13 +06:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Payroll.BO
{
[Serializable]
public class DataIntegration
{
public DateTime? UploadDate { get; set; }
public string EmployeeNo { get; set; }
public string GlobalID { get; set; }
public string PreviousEmployeeNo { get; set; }
public DateTime? ContractChangeEndDate { get; set; }
public string EmployeeName { get; set; }
public string FathersName { get; set; }
public string Designation { get; set; }
public DateTime? DateOfBirth { get; set; }
public DateTime? DateOfJoining { get; set; }
public DateTime? ConfirmationDate { get; set; }
public DateTime? TerminationDate { get; set; }
public string Category { get; set; }
public string Religion { get; set; }
public string MaritalStatus { get; set; }
public string Gender { get; set; }
public string TIN { get; set; }
public string IsForeignExpatriate { get; set; }
public string Grade { get; set; }
public double BasicSalary { get; set; }
public double SpecialAllowance { get; set; }
public DateTime? BasicSalaryEffectDate { get; set; }
public string SALARY_CHANGE_TYPE { get; set; }
public string DivisionCode { get; set; }
public string Division { get; set; }
public string DepartmentCode { get; set; }
public string Department { get; set; }
public string SectionCode { get; set; }
public string Section { get; set; }
public string SubSectionCode { get; set; }
public string SubSection { get; set; }
public string UnitCode { get; set; }
public string Unit { get; set; }
public string SubUnitCode { get; set; }
public string SubUnit { get; set; }
public string ZoneCode { get; set; }
public string Zone { get; set; }
public string LocationCode { get; set; }
public string Location { get; set; }
public string CostCenterCode { get; set; }
public DateTime? AssignmentChangeDate { get; set; }
public string SalaryBankCode { get; set; }
public string SalaryBank { get; set; }
public string SalaryBranchCode { get; set; }
public string SalaryBranch { get; set; }
public string SalaryAccountNumber { get; set; }
public DateTime? SALARY_ACCOUNT_EFFECT_DATE { get; set; }
public string EmailAddress { get; set; }
public string MobileNo { get; set; }
public string CompanyCode { get; set; }
public string Company { get; set; }
public string RCCode { get; set; }
}
}