Esempio n. 1
0
 public IQueryable <Things> GetAllThings()
 {
     return(_thingRepository.GetAll());
 }
Esempio n. 2
0
 public IActionResult Get()
 {
     return(Ok(_thingsRepository.GetAll()));
 }