17 lines
376 B
C#
17 lines
376 B
C#
using GerstITS.IoC;
|
|
|
|
namespace GerstITS.Examples.Api;
|
|
|
|
public sealed partial class Module : IIoCModule<IServiceCollection>
|
|
{
|
|
#region IIoCModule
|
|
|
|
public void RegisterComponents(IServiceCollection container)
|
|
{
|
|
RegisterConfigurations(container);
|
|
RegisterExceptionHandling(container);
|
|
RegisterStartupTasks(container);
|
|
}
|
|
|
|
#endregion
|
|
} |