Exemple #1
0
        public List <EmployeeWiseSalaryPayment> ReadEmployeeWiseSalaryPaymentPosting(string queryOption, string locationCode)
        {
            List <EmployeeWiseSalaryPayment> lstSalaryPayment = new List <EmployeeWiseSalaryPayment>();

            lstSalaryPayment = AMSService.ReadEmployeeWiseSalaryPaymentPosting(queryOption, locationCode);

            foreach (EmployeeWiseSalaryPayment sp in lstSalaryPayment)
            {
                sp.YearMonth = Helper.YearMonthNumberToYearMonthText(sp.YearMonth);
            }

            return(lstSalaryPayment);
        }