You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public ControllerTest(ITextService textService, ITextServiceSingleton textServiceSingleton)
{
_textService = textService;
_textServiceSingleton = textServiceSingleton;
}
[Route("test")]
[Method("GET")]
public void RoutePostTest(WebServerEventArgs e)
{
var content = $"Response from {nameof(ITextService)}: {_textService.GetText()}. Response from {nameof(ITextServiceSingleton)}: {_textServiceSingleton.GetText()}";