Exemple #1
0
 public ManageKeyModel(
     AudiocraticAPI.APIContext context,
     IAPIKeyService apiKeyService)
 {
     _context       = context;
     _apiKeyService = apiKeyService;
 }
 public CreateModel(
     AudiocraticAPI.APIContext context,
     IHubSpotService hubSpotService,
     IAPIKeyService apiKeyService)
 {
     _context        = context;
     _hubSpotService = hubSpotService;
     _apiKeyService  = apiKeyService;
 }
Exemple #3
0
 public HubSpotController(
     AudiocraticAPI.APIContext context,
     IAPIKeyService apiKeyService,
     IHubSpotService hubSpotService,
     IHubSpotToConstantContactService hubSpotToConstantContactService)
 {
     _context        = context;
     _apiKeyService  = apiKeyService;
     _hubSpotService = hubSpotService;
     _hubSpotToConstantContactService = hubSpotToConstantContactService;
 }
Exemple #4
0
 public IndexModel(
     IHubSpotToConstantContactService hubSpotToConstantContactService,
     HubSpotToCCIntegrationLogService logService,
     APIContext context,
     IAPIKeyService aPIKeyService)
 {
     _hubSpotToConstantContactService = hubSpotToConstantContactService;
     _logService    = logService;
     _context       = context;
     _apiKeyService = aPIKeyService;
 }
 public YouTubeVideoNetworkService(IStorageService ss, IAPIKeyService aks)
 {
     _ss = ss;
     _aks = aks;
 }
 public FacebookSocialMediaService(IAPIKeyService aks, IStorageService ss)
 {
     _aks = aks;
     _ss  = ss;
 }
Exemple #7
0
 public SoundCloudAudioNetworkService(IStorageService ss, IAPIKeyService aks, IMasterService ms)
 {
     _ss  = ss;
     _aks = aks;
     _ms  = ms;
 }
Exemple #8
0
 public YouTubeVideoNetworkService(IStorageService ss, IAPIKeyService aks)
 {
     _ss  = ss;
     _aks = aks;
 }
 public FacebookSocialMediaService(IAPIKeyService aks, IStorageService ss)
 {
     _aks = aks;
     _ss = ss;
 }
 public SoundCloudAudioNetworkService(IStorageService ss, IAPIKeyService aks, IMasterService ms)
 {
     _ss = ss;
     _aks = aks;
     _ms = ms;
 }
 public APIController()
 {
     this.apiService = Injector.Container.Resolve <IAPIKeyService>();
 }
Exemple #12
0
 public ConstantContactService(IAPIKeyService apiKeyService)
 {
     _apiKeyService = apiKeyService;
 }