public async Task <ActionResult <List <string> > > Get()
        {
            var result = await _configurationAppService.GetAll();

            return(Ok(result));
        }
예제 #2
0
 public async Task <IActionResult> CarregaConfig()
 {
     return(new ObjectResult(await _configurationAppService.GetAll()));
 }