public CollectionsManager(IPrincipal principal, ApiUserStore userStore, IMapper mapper, ITwitterCollectionsStore twitterCollectionsStore, ITwitterSourcesStore twitterSourcesStore, TwitterClient client, IUserSocialsStore userSocialsStore) : base(principal, userStore, mapper)
 {
     _twitterSourcesStore     = twitterSourcesStore;
     _twitterCollectionsStore = twitterCollectionsStore;
     _userSocialsStore        = userSocialsStore;
     _client = client;
 }
示例#2
0
 public BaseManager(IPrincipal principal, ApiUserStore userStore, IMapper mapper)
 {
     _principal = principal as ClaimsPrincipal;
     _userStore = userStore;
     _logger    = new LoggerFactory().CreateLogger(GetType().FullName);
     _mapper    = mapper;
 }
 public TrainSetManager(IPrincipal principal, ApiUserStore userStore, IMapper mapper, ITrainSetStore trainSetStore,
                        ITwitterCollectionsStore twitterCollectionsStore, ITwitterSourcesStore twitterSourcesStore, IUserSocialsStore userSocialsStore,
                        TwitterClient twitterClient, VReader vReader, StorageBlobClient storageBlobClient) : base(principal, userStore, mapper)
 {
     _trainSets = trainSetStore;
     _twitterCollectionsStore = twitterCollectionsStore;
     _twitterSourcesStore     = twitterSourcesStore;
     _userSocialsStore        = userSocialsStore;
     _twitterClient           = twitterClient;
     _vReader           = vReader;
     _storageBlobClient = storageBlobClient;
 }
 public TwitterManager(IPrincipal principal, ApiUserStore userStore, IMapper mapper, TwitterClient client, IUserSocialsStore userSocialsStore) : base(principal, userStore, mapper)
 {
     _client           = client;
     _userSocialsStore = userSocialsStore;
 }
示例#5
0
 public UserManager(IPrincipal principal, ApiUserStore userStore, IMapper mapper, ApiDbContext context, AppDataModel appData, TwitterClient twitterClient) : base(principal, userStore, mapper)
 {
     _appData       = appData;
     _twitterClient = twitterClient;
     _context       = context;
 }
示例#6
0
 public NeuralManager(IPrincipal principal, ApiUserStore userStore, IMapper mapper, INeuralStore neuralStore, StorageBlobClient storageBlobClient) : base(principal, userStore, mapper)
 {
     _neuralStore       = neuralStore;
     _storageBlobClient = storageBlobClient;
 }