Exemplo n.º 1
0
        public DataTable Bind_Designation(int Ind = 0, int CityCode = 0)
        {
            DL_QryEmp dlobj = new DL_QryEmp();
            DataTable dt    = new DataTable();

            dt = dlobj.FillDesignation(Ind, CityCode);
            return(dt);
        }
Exemplo n.º 2
0
        public DataTable Get_QtyDetails(PL_QryEmp plobj)
        {
            DL_QryEmp objdl = new DL_QryEmp();
            DataTable dt    = new DataTable();

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