public int CheckData(EWA_TimeSlotMaster objEWA) { try { DL_TimeSlotMaster objDL = new DL_TimeSlotMaster(); int cnt = objDL.CheckData(objEWA); return(cnt); } catch (Exception) { throw; } }
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; } }
//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; } }