public bool SaveToRepo(Restaurant r) { try { _Client.Index(r); return true; } catch { return false; } }
public ActionResult SaveNewRestaurant(Restaurant r) { return Json(_searchService.AddToIndex(r)); }
public bool AddToIndex (Restaurant r) { return _repo.SaveToRepo(r); }