18 lines
423 B
C#
18 lines
423 B
C#
using GerstITS.Examples.Api.StartupTasks;
|
|
using GerstITS.IoC.DotNetCore;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace GerstITS.Examples.Api
|
|
{
|
|
public sealed partial class Module
|
|
{
|
|
#region Methods
|
|
|
|
private static void RegisterStartupTasks(IServiceCollection container)
|
|
{
|
|
container.RegisterStartupTasksOf<ExampleStartupTask>();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |