24 lines
626 B
C#
24 lines
626 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using SewerStammGen.WPF.ViewModel.State;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.HostBuilders
|
|
{
|
|
static class AddStoresHostBuilderExtensions
|
|
{
|
|
public static IHostBuilder AddStores(this IHostBuilder hostBuilder)
|
|
{
|
|
hostBuilder.ConfigureServices(services =>
|
|
{
|
|
services.AddSingleton<IActualState, ActualState>();
|
|
});
|
|
return hostBuilder;
|
|
}
|
|
}
|
|
}
|