Exemplo n.º 1
0
 public virtual Task <AttendeeRelationship> UpdateGuestRelationsship([FromBody] AttendeeRelationship attendee, int eventId, int attendeeId)
 {
     attendee.EventId  = eventId;
     attendee.PersonId = attendeeId;
     return(_attendeeService.UpdateAttendeeRelationshipAsync(attendee));
 }