public async Task <IActionResult> GetAllAsync()
        {
            var data = await _articleCategoryService.GetAllAsync();

            return(Ok(data));
        }
Ejemplo n.º 2
0
 public async Task <IActionResult> GetAllAsync()
 {
     return(Ok(await _articleCategoryService.GetAllAsync()));
 }