Exemple #1
0
 public Program(ITaskService taskService, IGroupToolService groupToolService, IAwsCloudsearchService awsService, ICorkboardService corkboardService)
 {
     _taskService      = taskService;
     _groupToolService = groupToolService;
     _awsService       = awsService;
     _corkboardService = corkboardService;
 }
Exemple #2
0
 public FinderController(IFinderService finderService,
                         IGroupToolService groupToolService,
                         IUserImpersonationService userImpersonationService,
                         IAuthenticationRepository authenticationRepository,
                         IAwsCloudsearchService awsCloudsearchService,
                         IAnalyticsService analyticsService)
     : base(userImpersonationService, authenticationRepository)
 {
     _finderService         = finderService;
     _groupToolService      = groupToolService;
     _awsCloudsearchService = awsCloudsearchService;
     _authenticationRepo    = authenticationRepository;
     _analyticsService      = analyticsService;
 }