Exemplo n.º 1
0
        public DataTable SavePFCharges(PL_PFCharges plobj)
        {
            DataTable    dt    = new DataTable();
            DL_PFCharges dlobj = new DL_PFCharges();

            dt = dlobj.DL_Save(plobj);
            return(dt);
        }
Exemplo n.º 2
0
        public DataTable SearchByEmpNo(int Ind = 0, int CityCode = 0, int Empno = 0, string month = "")
        {
            DL_PFCharges dlobj = new DL_PFCharges();
            DataTable    dt    = new DataTable();

            dt = dlobj.DL_SearchByEmployeeNo(Ind, CityCode, Empno, month);
            return(dt);
        }