コード例 #1
0
 public AccountDAO()
 {
     this.db = new ChatAppModels();
 }
コード例 #2
0
 public MessageDAO()
 {
     this.db = new ChatAppModels();
 }
コード例 #3
0
 public ConversationDAO(HashSet <OnlineAccount> onlineList)
 {
     this.db         = new ChatAppModels();
     this.onlineList = onlineList;
 }
コード例 #4
0
 public ConversationDAO()
 {
     this.db = new ChatAppModels();
 }
コード例 #5
0
 public ParticipantDAO()
 {
     this.db = new ChatAppModels();
 }
コード例 #6
0
 public SignUpHandler(ServerWorker worker, SocketData data)
 {
     this.data   = data;
     this.worker = worker;
     this.db     = new ChatAppModels();
 }