Remove unnecessary files

pull/1/head
Matija Koželj 2 years ago
parent af01625242
commit 9ead7f90e0

@ -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>();
}
}

@ -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; }
}
Loading…
Cancel
Save