17 lines
426 B
C#
17 lines
426 B
C#
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using PARR.BLL;
|
|
|
|
namespace PARR.AIHITLoader
|
|
{
|
|
public static class AihitLoaderInstaller
|
|
{
|
|
public static void InstallAihitLoaderServices(this IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
services.InstallBllServices(configuration);
|
|
|
|
//todo: config e.t.c
|
|
}
|
|
}
|
|
}
|