using ln.http.router; using System; using System.Collections.Generic; using System.Text; namespace ln.http.rest { public class RestAPIAdapter : IHttpRouter { public CRUDObjectContainer ObjectContainer { get; } public RestAPIAdapter(CRUDObjectContainer objectContainer) { ObjectContainer = objectContainer; } public HttpResponse Route(HttpRoutingContext routingContext, HttpRequest httpRequest) { throw new NotImplementedException(); } } }