Remove unnecessary files

This commit is contained in:
Matija Koželj 2022-12-05 17:47:28 +01:00
parent af01625242
commit 9ead7f90e0
2 changed files with 0 additions and 27 deletions

View File

@ -1,14 +0,0 @@
using Connected.Annotations;
using Microsoft.Extensions.DependencyInjection;
[assembly: MicroService(MicroServiceType.Provider)]
namespace Connected.ServiceModel.Client.Data;
internal sealed class DataStartup : Startup
{
protected override void OnConfigureServices(IServiceCollection services)
{
services.AddScoped<RemoteTableService>();
}
}

View File

@ -1,13 +0,0 @@
using Connected.Net;
namespace Connected.ServiceModel.Client.Data;
internal sealed class RemoteTableService
{
public RemoteTableService(IHttpService http)
{
Http = http;
}
private IHttpService Http { get; }
}