public Response SaveEventMasterDetails(EventMasterCustomModel objModel)
 {
     using (objDAL = new EventMasterRepo())
     {
         return(objDAL.SaveEventMasterDetails(objModel));
     }
 }
 public object DeleteEventRegistrationDetail(EventMasterCustomModel objEventRegistrationModel)
 {
     using (objDAL = new EventMasterRepo())
     {
         return(objDAL.DeleteEventRegistrationDetail(objEventRegistrationModel));
     }
 }
 public object GetEventMasterListing(EventMasterCustomModel objEventRegistrationModel)
 {
     using (objDAL = new EventMasterRepo())
     {
         return(objDAL.GetEventMasterListing(objEventRegistrationModel));
     }
 }