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