protected virtual void OnJoinPresentation(Presentation presentation, SocketSubscription sender)
 {
     presentation.Join(new Attendee(sender));
     sender.Connection.SendEvent(new JoinedPresentation
     {
         Name = presentation.Name,
         CurrentSlide = presentation.CurrentSlide
     });
 }