Files
Examples/GerstITS.WebClients.Example.Api/Module.cs
2021-06-15 10:59:47 +02:00

18 lines
441 B
C#

using GerstITS.IoC;
using Microsoft.Extensions.DependencyInjection;
namespace GerstITS.Examples.WebClients.Examples.Api
{
public sealed partial class Module : IIoCModule<IServiceCollection>
{
#region IIoCModule
public void RegisterComponents(IServiceCollection container)
{
RegisterConfigurations(container);
RegisterCreationRules(container);
}
#endregion
}
}