using System; namespace Kit.Helpers.EndPoints { using Microsoft.AspNetCore.Mvc; internal class ControllerEndPointFluent : IEndPointFluent> where TController : ControllerBase { public ControllerEndPointFluent NeedHttpGet(bool required = true) { throw new NotImplementedException(); } public ControllerEndPointFluent NeedHttpPost(bool required = true) { throw new NotImplementedException(); } public ControllerEndPointFluent NeedSecurityKey(string securityKeyName) { throw new NotImplementedException(); } public ControllerEndPointFluent WithConstraints(object constraints) { throw new NotImplementedException(); } public ControllerEndPointFluent WithDataTokens(object dataTokens) { throw new NotImplementedException(); } public ControllerEndPointFluent WithDefaults(object defaults) { throw new NotImplementedException(); } public ControllerEndPointFluent WithNamespaces(string[] namespaces) { throw new NotImplementedException(); } } }