public IActionResult Get(int id) { var store = _storeBusiness.FindById(id); if (store == null) { return(NotFound()); } return(Ok(store)); }