Пример #1
0
 /// <summary>
 /// Creates a new <see cref="UserPause"/> object
 /// </summary>
 /// <param name="user">The <see cref="Entities.User"/> who isnt in the <see cref="Entities.Seance"/></param>
 /// <param name="seance">The <see cref="Entities.Seance"/> the <see cref="Entities.User"/> isnt in</param>
 public UserPause(User user, Seance seance)
 {
     User   = user;
     Seance = seance;
 }
Пример #2
0
 /// <summary>
 /// Creates a new <see cref="Meeting"/> object
 /// </summary>
 /// <param name="userOne">One of the persons in the meeting</param>
 /// <param name="userTwo">The other person in the meeting</param>
 /// <param name="seance">The seance the meeting is for</param>
 public Meeting(User userOne, User userTwo, Seance seance)
 {
     UserOne = userOne;
     UserTwo = userTwo;
     Seance  = seance;
 }