using Microsoft.Extensions.DependencyInjection;
using System;
namespace TEAMModelOS.SDK.Module.AzureTable.Configuration
{
public class AzureTableServiceBuilder : ServiceCollection
{
///
///
///
///
public AzureTableServiceBuilder(IServiceCollection services)
{
Services = services ?? throw new ArgumentNullException(nameof(services));
}
///
///
///
public IServiceCollection Services { get; }
}
}