public IQueryable <Things> GetAllThings() { return(_thingRepository.GetAll()); }
public IActionResult Get() { return(Ok(_thingsRepository.GetAll())); }