ln.http/ln.http/rest/RestAPIAdapter.cs

23 lines
559 B
C#
Raw Normal View History

2020-11-17 23:46:07 +01:00
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();
}
}
}