public ProjectTeamController(IProjectTeamApp teamApp, ITeamMembersApp teamMembersApp)
 {
     this.teamApp        = teamApp;
     this.teamMembersApp = teamMembersApp;
 }
示例#2
0
 public TeamMembersController(ITeamMembersApp teamMembersApp, IAccountApp accountApp)
 {
     this.teamMembersApp = teamMembersApp;
     this.accountApp     = accountApp;
 }