2022-12-07 14:07:40 +01:00

22 lines
515 B
C#

using Common.Types.TaxRates;
using Connected.Startup;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.DependencyInjection;
namespace Common.Types;
public class ClientBootstrapper : IStartup
{
public async Task Configure(WebAssemblyHost host)
{
await Task.CompletedTask;
}
public async Task ConfigureServices(IServiceCollection services)
{
services.Add(ServiceDescriptor.Scoped(typeof(ITaxRateService), typeof(TaxRateService)));
await Task.CompletedTask;
}
}