Ejemplo n.º 1
0
 public async Task <ActionResult <IEnumerable <Author> > > GetAuthor()
 {
     return(Ok(new { data = await _authorServices.GetAllAuthor(), success = true }));
 }