public ProjectTeamController(IProjectTeamApp teamApp, ITeamMembersApp teamMembersApp)
 {
     this.teamApp        = teamApp;
     this.teamMembersApp = teamMembersApp;
 }
Exemplo n.º 2
0
 public TeamMembersController(ITeamMembersApp teamMembersApp, IAccountApp accountApp)
 {
     this.teamMembersApp = teamMembersApp;
     this.accountApp     = accountApp;
 }