Exemplo n.º 1
0
        public async Task <IActionResult> GetJSONReport([FromBody] PathModel pathModel)
        {
            var resString = await _migrationService.GetReport(pathModel.path, "json");

            return(Ok(resString));
        }