17 lines
399 B
C#
17 lines
399 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
|
|
} |