Exemplo n.º 1
0
Arquivo: Wrapper.cs Projeto: kper/chat
 public Wrapper(User user,Color color,Communicator communicator,Chatroom chatroom)
 {
     this.user = user;
     this.color = color;
     this.communicator = communicator;
     this.chatroom = chatroom;
 }
Exemplo n.º 2
0
Arquivo: Wrapper.cs Projeto: kper/chat
 public Wrapper(User user,Socket socket)
 {
     this.user = user;
     this.communicator = new Communicator(socket);
 }