public AccountDAO() { this.db = new ChatAppModels(); }
public MessageDAO() { this.db = new ChatAppModels(); }
public ConversationDAO(HashSet <OnlineAccount> onlineList) { this.db = new ChatAppModels(); this.onlineList = onlineList; }
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(); }