15 lines
401 B
C#
15 lines
401 B
C#
using NG_2023_Kanban.BusinessLayer.Services;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace NG_2023_Kanban.BusinessLayer.Inject
|
|
{
|
|
public static class Injecting
|
|
{
|
|
public static void InjectBLL(
|
|
this IServiceCollection services)
|
|
{
|
|
services.AddAutoMapper(typeof(MappingProfile));
|
|
services.AddScoped<UserService>();
|
|
}
|
|
}
|
|
}
|