Esempio n. 1
0
        //Fetch Department
        #region [Fetch Department]

        public DataSet FetchDepartment_BL(EWA_AssignDeptDes ObjEWA)
        {
            try
            {
                DL_AssignDeptDes objDL = new DL_AssignDeptDes();
                DataSet          ds    = objDL.FetchDepartment_DL(ObjEWA);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                objDL = null;
            }
        }
Esempio n. 2
0
        //To Call Employee Grid Bind
        #region [Employee Grid Bind]

        public System.Data.DataSet EmployeeGridBind_BL(EWA_AssignDeptDes objEWA)
        {
            try
            {
                DL_AssignDeptDes objDL = new DL_AssignDeptDes();
                DataSet          ds    = objDL.BindEmployeeGrid_DL(objEWA);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                objDL = null;
            }
        }