예제 #1
0
 public int CheckData(EWA_TimeSlotMaster objEWA)
 {
     try
     {
         DL_TimeSlotMaster objDL = new DL_TimeSlotMaster();
         int cnt = objDL.CheckData(objEWA);
         return(cnt);
     }
     catch (Exception)
     {
         throw;
     }
 }
예제 #2
0
 public DataSet GetTimeSlotData(EWA_TimeSlotMaster objEWA)
 {
     try
     {
         DL_TimeSlotMaster objDL = new DL_TimeSlotMaster();
         DataSet           ds    = objDL.GetTimeSlotData(objEWA);
         return(ds);
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         objDL = null;
     }
 }
예제 #3
0
        //Insert Update Delete operaeion on AcademicYear Table

        #region [Action Performed]

        public int TimeSlotMaster_BL(EWA_TimeSlotMaster objEWA)
        {
            try
            {
                DL_TimeSlotMaster objDL = new DL_TimeSlotMaster();
                int flag = objDL.TimeSlotAction_DL(objEWA);
                return(flag);
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                objDL = null;
            }
        }