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