/// <summary>
 /// Business method to edit Events.
 /// </summary>
 /// <param name="eventDTO"></param>
 /// <returns></returns>
 public EventDTO EditEventBAL(EventDTO eventDTO)
 {
     try
     {
         return(eventDAL.EditEventDAL(eventDTO));
     }
     catch (DALException dalEx)
     {
         throw new Exception(dalEx.Message);
     }
     catch (Exception)
     {
         throw new Exception(Resource.BALErrorMessage);
     }
 }