Ejemplo n.º 1
0
        public DataTable LoadBindGridview(int Ind = 0, int CityCode = 0)
        {
            DL_LeaveMaster dlobj = new DL_LeaveMaster();
            DataTable      dt    = new DataTable();

            dt = dlobj.BindGrid(Ind, CityCode);
            return(dt);
        }
Ejemplo n.º 2
0
        public DataTable SaveData(PL_LeaveMaster plobj)
        {
            DL_LeaveMaster objdl = new DL_LeaveMaster();
            DataTable      dt    = new DataTable();

            if (plobj.Ind == 0)
            {
                return(dt);
            }
            else
            {
                dt = objdl.Save_LeaveMaster(plobj);
                return(dt);
            }
        }