AzureStorageBuilder.cs 853 B

12345678910111213141516171819202122232425262728
  1. using Microsoft.Extensions.DependencyInjection;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace HaBookCms.AzureStorage.Extensions
  6. {
  7. public class AzureStorageBuilder
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="IdentityServerBuilder"/> class.
  11. /// </summary>
  12. /// <param name="services">The services.</param>
  13. /// <exception cref="System.ArgumentNullException">services</exception>
  14. public AzureStorageBuilder(IServiceCollection services)
  15. {
  16. Services = services ?? throw new ArgumentNullException(nameof(services));
  17. }
  18. /// <summary>
  19. /// Gets the services.
  20. /// </summary>
  21. /// <value>
  22. /// The services.
  23. /// </value>
  24. public IServiceCollection Services { get; }
  25. }
  26. }