@ -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;
internal sealed class RemoteTableService
public RemoteTableService(IHttpService http)
Http = http;
private IHttpService Http { get; }