public TeamsController(IGetTeamDetailsOperation teamDetailsOperation,
                        IGetSelfTeamsOperation getSelfTeamOperation,
                        IGetSelfTeamTopicTreeOperation getSelfTeamTopicTreeOperation,
                        IGetSpecificTeamTopicTreeOperation getSpecificTeamTopicTreeOperation,
                        IGetFullSubordinateTopicTreeOperation getFullSubordinateTopicTreeOperation)
 {
     _getTeamDetailsOperation              = teamDetailsOperation;
     _getSelfTeamOperation                 = getSelfTeamOperation;
     _getSelfTeamTopicTreeOperation        = getSelfTeamTopicTreeOperation;
     _getSpecificTeamTopicTreeOperation    = getSpecificTeamTopicTreeOperation;
     _getFullSubordinateTopicTreeOperation = getFullSubordinateTopicTreeOperation;
 }
Ejemplo n.º 2
0
 public GetSelfTeamsOperation(IGetTeamDetailsOperation teamDetailsOperation, IAuthorizationContext authorizationContext)
 {
     _getTeamDetailsOperation = teamDetailsOperation;
     _authorizationContext    = authorizationContext;
 }