17 lines
376 B
C#
17 lines
376 B
C#
using GerstITS.IoC;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace GerstITS.Examples.Logic;
|
|
|
|
public sealed partial class Module : IIoCModule<IServiceCollection>
|
|
{
|
|
#region IIoCModule
|
|
|
|
public void RegisterComponents(IServiceCollection container)
|
|
{
|
|
RegisterExample(container);
|
|
RegisterShared(container);
|
|
}
|
|
|
|
#endregion
|
|
} |