public ActionResult IndividualSalarySheet(int Id)
        {
            PayrollSalaryMasterSheetDTO db = _PayrollGenerationService.GetIndividualSalarySheetDescription(Id);

            return(View(db));
        }
        public ActionResult SalarySheetDetail(int Id)
        {
            PayrollSalaryMasterSheetDTO db = _PayrollGenerationService.GetIndividualSalarySheetDescription(Id);

            return(View("../Payroll/MyPayroll/SalarySheetDetail", db));
        }