/// <summary> /// Business method to get Events by EventID /// </summary> /// <param name="EventID"></param> /// <returns></returns> public EventDTO GetEventBAL(int EventID) { try { return(eventDAL.GetEventDAL(EventID)); } catch (DALException dalEx) { throw new Exception(dalEx.Message); } catch (Exception) { throw new Exception(Resource.BALErrorMessage); } }