public TableStorageContextFactory(
     ICloudStorageServices cloudStorageServices,
     IRepositoryFactory repositoryFactory)
 {
     this.cloudStorageServices = cloudStorageServices;
     this.repositoryFactory = repositoryFactory;
 }
Example #2
0
 public IdentityCloudQueue(ICloudStorageServices cloudStorageServices)
 {
     this.lazyCloudQueue = new Lazy<CloudQueue>(() => cloudStorageServices.CloudQueueClient.GetQueueReference(AzureQueueNames.IDENTITY));
 }
Example #3
0
 public ReportsServices(ICloudStorageServices storageServices, IRepository repository)
 {
     _repository      = repository;
     _storageServices = storageServices;
 }
Example #4
0
 public ReportsServices(ICloudStorageServices storageServices, IRepository repository)
 {
     _repository = repository;
     _storageServices = storageServices;
 }