Exemple #1
0
        //Add college to dropdown
        #region [Add College To dropdown]

        public DataSet AddCollegeToDropDown()
        {
            try
            {
                DL_SuperAdmin objDL = new DL_SuperAdmin();
                DataSet       ds    = objDL.AddCollegeToDropDown();
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
        }
Exemple #2
0
        //Get Org Details
        #region [get Org Details]

        public DataSet Get_OrganizationDetails(int orgID)
        {
            try
            {
                DL_SuperAdmin objDL = new DL_SuperAdmin();
                DataSet       ds    = objDL.Get_OrganizationDetails(orgID);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
        }
Exemple #3
0
        //Get Org Code
        #region [Get Org Code]

        public int Get_orgCode()
        {
            try
            {
                DL_SuperAdmin dcls1   = new DL_SuperAdmin();
                int           orgCode = dcls1.Get_OrgID();

                return(orgCode);
            }
            catch (Exception)
            {
                throw;
            }
        }
Exemple #4
0
        //Update College Data
        #region [Update College Data]

        public void Update_College_Data(EWA_SuperAdmin objEWA)
        {
            DL_SuperAdmin objDL = new DL_SuperAdmin();

            try
            {
                objDL.Update_College_Data(objEWA);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                objDL = null;
            }
        }
Exemple #5
0
        //Insert College Registration
        #region [Insert College Registration]

        public void insertNew_College_RegistrationBLL(EWA_SuperAdmin objEWA)
        {
            DL_SuperAdmin objDL = new DL_SuperAdmin();

            try
            {
                objDL.insertNew_College_RegistrationDLL(objEWA);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                objDL = null;
            }
        }