public List <EmployeeMasterModel> GetEmployeeMaster()
 {
     using (objDAL = new CommonMasterDataRepo())
     {
         return(objDAL.GetEmployeeMaster());
     }
 }
 public List <SectionMasterModel> BindClassSection(int ClassId)
 {
     using (objDAL = new CommonMasterDataRepo())
     {
         return(objDAL.BindClassSection(ClassId));
     }
 }
 public List <ClassMasterModel> BindSessionClass(int SessionId)
 {
     using (objDAL = new CommonMasterDataRepo())
     {
         return(objDAL.BindSessionClass(SessionId));
     }
 }
 public List <SessionMasterModel> GetSessionMaster()
 {
     using (objDAL = new CommonMasterDataRepo())
     {
         return(objDAL.GetSessionMaster());
     }
 }
 public List <SectionMasterModel> GetSectionMaster(int?ClassId)
 {
     using (objDAL = new CommonMasterDataRepo())
     {
         return(objDAL.GetSectionMaster(ClassId));
     }
 }
 public List <ClassMasterModel> GetClassMaster(int?SessionId)
 {
     using (objDAL = new CommonMasterDataRepo())
     {
         return(objDAL.GetClassMaster(SessionId));
     }
 }