public WorkActivityAppService(
     ICache cache,
     IGitApiService gitApi,
     IIterationsApiService iterationsApi,
     ITeamsApiService teamsApi,
     WorkIterationAppService workIterationAppService)
 {
     _cache                   = cache ?? throw new ArgumentNullException(nameof(cache));
     _gitApi                  = gitApi ?? throw new ArgumentNullException(nameof(gitApi));
     _iterationsApi           = iterationsApi ?? throw new ArgumentNullException(nameof(iterationsApi));
     _teamsApi                = teamsApi ?? throw new ArgumentNullException(nameof(teamsApi));
     _workIterationAppService = workIterationAppService ??
                                throw new ArgumentNullException(nameof(workIterationAppService));
 }
 public TeamMetaAppService(
     ICache cache,
     IGitApiService gitApi,
     IIterationsApiService iterationsApi,
     IProjectsApiService projectsApi,
     IQueriesApiService queriesApi,
     ITeamsApiService teamsApi,
     IWorkApiService workApi)
 {
     _cache         = cache ?? throw new ArgumentNullException(nameof(cache));
     _gitApi        = gitApi ?? throw new ArgumentNullException(nameof(gitApi));
     _iterationsApi = iterationsApi ?? throw new ArgumentNullException(nameof(iterationsApi));
     _projectsApi   = projectsApi ?? throw new ArgumentNullException(nameof(projectsApi));
     _queriesApi    = queriesApi ?? throw new ArgumentNullException(nameof(queriesApi));
     _teamsApi      = teamsApi ?? throw new ArgumentNullException(nameof(teamsApi));
     _workApi       = workApi ?? throw new ArgumentNullException(nameof(workApi));
 }
Beispiel #3
0
 public Home(IGitApiService gitApiService)
 {
     _gitApiService = gitApiService;
 }