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;
 }
 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;
 }