/// <summary> /// Business method to View User's Events. /// </summary> /// <param name="userID"></param> /// <returns></returns> public IList <EventDTO> ViewMyEventsBAL(int userID) { try { return(eventDAL.ViewMyEventsDAL(userID)); } catch (DALException dalEx) { throw new Exception(dalEx.Message); } catch (Exception) { throw new Exception(Resource.BALErrorMessage); } }