Пример #1
0
 /// <summary>
 /// This method will call the Event Resource class method to get the event detail in the database
 /// </summary>
 /// <param name="objEvent">An Event Object which contain Event Id for which wants to get the detail of the event</param>
 /// <returns>This method will return the Events object which contain the Event information</returns>
 public Events GetFullEvent(Events objEvent)
 {
     try
     {
         EventResource objEventRes = new EventResource();
         return objEventRes.GetFullEvent(objEvent);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }