Exemplo n.º 1
0
 public ListHelper(IAreaManager areaManager, IGoalManager goalManager, IMetricManager metricManager, IExternalApiAuthManager externalApiAuthManager)
 {
     _areaManager            = areaManager;
     _goalManager            = goalManager;
     _metricManager          = metricManager;
     _externalApiAuthManager = externalApiAuthManager;
 }
Exemplo n.º 2
0
 public DataSourcesController(IExternalApiAuthManager externalApiAuthManager, ICompanyManager companyManager, IGoogleAuthorizer googleAuthorizer, ListHelper listHelper)
     : base(ownerAccessOnly: true)
 {
     _externalApiAuthManager = externalApiAuthManager;
     _companyManager         = companyManager;
     _googleAuthorizer       = googleAuthorizer;
     ListHelper = listHelper;
 }
Exemplo n.º 3
0
 public MetricManager(IMetricRepository metricRepository, IMetricDataPointRepository metricDataPointRepository,
                      IChartMogulApiManager chartMogulApiManager, IGoogleAnalyticsApiManager googleAnalyticsApiManager, IExternalApiAuthManager externalApiAuthManager,
                      IGoogleAuthorizer googleAuthorizer, ICompanyManager companyManager)
     : base(metricRepository)
 {
     _metricRepository          = metricRepository;
     _metricDataPointRepository = metricDataPointRepository;
     _chartMogulApiManager      = chartMogulApiManager;
     _googleAnalyticsApiManager = googleAnalyticsApiManager;
     _externalApiAuthManager    = externalApiAuthManager;
     _googleAuthorizer          = googleAuthorizer;
     _companyManager            = companyManager;
 }
Exemplo n.º 4
0
 public GoogleOAuthDataStore(IExternalApiAuthManager externalApiAuthManager)
 {
     _externalApiAuthManager = externalApiAuthManager;
 }