public IActionResult GetAllTalents()
 {
     return(Ok(repository.GetAll()));
 }
示例#2
0
 public IEnumerable <Talent> GetAllTalents()
 {
     return(repository.GetAll());
 }