public User(IChatMediator mediator, string name) { this.mediator = mediator; this.name = name; this.mediator.AddUser(this); }
public User(IChatMediator chat, string name) { Id = Guid.NewGuid(); Chat = chat; Name = name; Chat.AddUser(this); }
public BasicUser(IChatMediator chatMediator, string name) { _chatMediator = chatMediator; Name = name; }
/// <summary> /// Initializes a new instance of the <see cref="PremiumUser"/> class. /// </summary> /// <param name="chatMediator">The chat mediator.</param> /// <param name="name">The name.</param> public PremiumUser(IChatMediator chatMediator, string name) : base(chatMediator, name) { }
public AbsUser(IChatMediator med, String name) { this.mediator = med; this.name = name; }
public BasicUser(string name, IChatMediator mediator) { this.chatMediator = mediator; this.name = name; }
protected ChatUser(IChatMediator chatMediator) { this.chatMediator = chatMediator; }
public User(IChatMediator chatMediator) { _chatMediator = chatMediator; }
//end public Player(IChatMediator chatMediator, string name) { this.Name = name; this.chatMediator = chatMediator; }
public BasicUser(IChatMediator chatMediator, string name) { this._name = name; this._chatMediator = chatMediator; }
public User(IChatMediator med, string name) { this._mediator = med; this._name = name; }
public PremiumUser(IChatMediator chatMediator, string name) { _chatMediator = chatMediator; Name = name; }
public YoungCharacter(IChatMediator chatMediator, string name) { this.chatMediator = chatMediator; this.name = name; }
public ChatUser(IChatMediator chatMediator) : base(chatMediator) { }
/// <summary> /// Initializes a new instance of the <see cref="BasicUser"/> class. /// </summary> /// <param name="chatMediator">The chat mediator.</param> /// <param name="name">The name.</param> public BasicUser(IChatMediator chatMediator, string name) : base(chatMediator, name) { }
public ChatBot(IChatMediator chatMediator) : base(chatMediator) { }
public UserImpl(IChatMediator chatMediator, string name) : base(chatMediator, name) { }
public GoldUser(IChatMediator chatMediator, string userName) { this._userName = userName; this._chatMediator = chatMediator; }
protected User(string name, IChatMediator chatMediator) { Name = name; ChatMediator = chatMediator; }
public User(string name, IChatMediator chatroom) { mChatRoom = chatroom; mName = name; }
public void SetChat(IChatMediator chat) { Chat = chat; Chat.AddUser(this); }
public PremiumUser(string name, IChatMediator mediator) { this.name = name; this.chatMediator = mediator; }
public PremiumUser(IChatMediator chatMediator, string name) { this._chatMediator = chatMediator; this._name = name; }
public User(IChatMediator chatMediator, string name) { this.chatMediator = chatMediator; this.name = name; }
public User(IChatMediator med, string name) : base(med, name) { }
public UserOne(string name, IChatMediator chatMediator) : base(name, chatMediator) { }
public ChatUser(string userName, IChatMediator chatMediator) { this.userName = userName; this.chatMediator = chatMediator; LastMessage = String.Empty; }