12345678910111213141516171819202122232425262728 |
- using Microsoft.Extensions.DependencyInjection;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HaBookCms.AzureStorage.Extensions
- {
- public class AzureStorageBuilder
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="IdentityServerBuilder"/> class.
- /// </summary>
- /// <param name="services">The services.</param>
- /// <exception cref="System.ArgumentNullException">services</exception>
- public AzureStorageBuilder(IServiceCollection services)
- {
- Services = services ?? throw new ArgumentNullException(nameof(services));
- }
- /// <summary>
- /// Gets the services.
- /// </summary>
- /// <value>
- /// The services.
- /// </value>
- public IServiceCollection Services { get; }
- }
- }
|