2020-11-27 01:16:14 +02:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using NetworkResurrector.Abstractions;
|
|
|
|
|
|
|
|
|
|
namespace NetworkResurrector.WakeOnLan.Nikeee
|
|
|
|
|
{
|
|
|
|
|
public static class DependencyInjectionExtensions
|
|
|
|
|
{
|
2020-11-27 01:35:31 +02:00
|
|
|
|
public static void AddWakeOnLanNikeeeService(this IServiceCollection services)
|
2020-11-27 01:16:14 +02:00
|
|
|
|
{
|
|
|
|
|
services.AddScoped<IWakeOnLanService, WakeOnLanService>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|