Example #1
0
        //To Call Subjects Grid Bind
        #region [Subjects Grid Bind]

        public System.Data.DataSet SubjectGridBind_BL(EWA_Subject objEWA)
        {
            try
            {
                DL_Subject objDL = new DL_Subject();
                DataSet    ds    = objDL.BindSubjectGrid_DL(objEWA);
                return(ds);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                objDL = null;
            }
        }
Example #2
0
        //Insert Update Delete operaeion on Subject Table
        #region [Action Performed For Subject]

        public int SubjectAction_BL(EWA_Subject objEWA)
        {
            //  DL_Documents objDL = new DL_Documents();
            try
            {
                int flag = objDL.SubjectAction_DL(objEWA);
                return(flag);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                objDL = null;
            }
        }