public bool FindById(int Id)
 {
     using (objDAL = new SessionMasterRepo())
     {
         return(objDAL.FindById(Id));
     }
 }
 public object DeleteSessionRegistrationDetail(SessionMasterCustomModel objModel)
 {
     using (objDAL = new SessionMasterRepo())
     {
         return(objDAL.DeleteSessionRegistrationDetail(objModel));
     }
 }
 public object GetSessionMasterListing(SessionMasterCustomModel objModel)
 {
     using (objDAL = new SessionMasterRepo())
     {
         return(objDAL.GetSessionMasterListing(objModel));
     }
 }
 public Response SaveSessionMasterDetails(SessionMasterCustomModel objModel)
 {
     using (objDAL = new SessionMasterRepo())
     {
         return(objDAL.SaveSessionMasterDetails(objModel));
     }
 }
 public SessionMasterCustomModel GetById(int Id)
 {
     using (objDAL = new SessionMasterRepo())
     {
         return(objDAL.GetById(Id));
     }
 }