/// <summary>
 /// This method will call the Event resource method to set the RSVP status for a Guest of the event
 /// </summary>
 /// <param name="objGuestToAdd">An CompleteGuestList Object which contain Guest and it's RSVP status</param>
 /// <param name="objEvent">An Events Object which contain event details</param>
 public void AddRsvp(CompleteGuestList objGuestToAdd, int EventId, int UserId)
 {
     try
     {
         EventResource objEventRes = new EventResource();
         int RSVPId =objEventRes.AddRsvp(objGuestToAdd, EventId, UserId);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }