Example #1
0
File: Wrapper.cs Project: kper/chat
 public Wrapper(User user,Color color,Communicator communicator,Chatroom chatroom)
 {
     this.user = user;
     this.color = color;
     this.communicator = communicator;
     this.chatroom = chatroom;
 }
Example #2
0
File: Wrapper.cs Project: kper/chat
 public Wrapper(User user,Socket socket)
 {
     this.user = user;
     this.communicator = new Communicator(socket);
 }