14 lines
344 B
C#
14 lines
344 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.AddScoped<UserService>();
|
|
}
|
|
}
|
|
}
|