/// <summary> /// This method will call the Event Resource class method to get the event list from the database /// </summary> /// <param name="objEvent">An Event Object which contain Tribute Id for which wants to get the event list</param> /// <returns>This method will return the list of Events object which contain the Event list</returns> public IList<Events> GetEventList(Events objEvent) { try { EventResource objEventRes = new EventResource(); return objEventRes.GetEventList(objEvent); } catch (Exception ex) { throw ex; } }