Exemplo n.º 1
0
        public IActionResult CountRequestsStartingWith(string code)
        {
            var count = _requestLogService.GetTotalNumberOfRequestsWithResponseCodeStartingWith(code);

            return(new JsonResult(count));
        }