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