You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Connected.Common.Types.TaxRates;
|
|
|
|
|
using Connected.Startup;
|
|
|
|
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
|
|
|
|
namespace Connected.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;
|
|
|
|
|
}
|
|
|
|
|
}
|