Exemplo n.º 1
0
 public ServerImplementation(RepoUserDB repoUser, RepoAvailableRoomDB repoAvailableRoom, RepoConference repoConference, RepoMessageDB repoMessage, RepoPaperDB repoPaper, RepoParticipantDB repoParticipant, RepoPayment repoPayment, RepoSessionDB repoSession)
 {
     this.repoUser          = repoUser;
     this.repoAvailableRoom = repoAvailableRoom;
     this.repoConference    = repoConference;
     this.repoMessage       = repoMessage;
     this.repoPaper         = repoPaper;
     this.repoParticipant   = repoParticipant;
     this.repoPayment       = repoPayment;
     this.repoSession       = repoSession;
 }
Exemplo n.º 2
0
 public ServerImplementation(RepoUserDB repoUser, RepoAvailableRoomDB repoAvailableRoom, RepoConference repoConference, RepoMessageDB repoMessage, RepoPaperDB repoPaper, RepoParticipantDB repoParticipant, RepoPayment repoPayment, RepoSessionDB repoSession)
 {
     this.repoUser          = repoUser;
     this.repoAvailableRoom = repoAvailableRoom;
     this.repoConference    = repoConference;
     this.repoMessage       = repoMessage;
     this.repoPaper         = repoPaper;
     this.repoParticipant   = repoParticipant;
     this.repoPayment       = repoPayment;
     this.repoSession       = repoSession;
     loggedClients          = new Dictionary <String, IClient>();
 }