コード例 #1
0
ファイル: ElasticRepo.cs プロジェクト: cayala/Portfolio
        public bool SaveToRepo(Restaurant r)
        {
            try
            {
                _Client.Index(r);
                return true;
            }

            catch
            {
                return false;
            }
        }
コード例 #2
0
ファイル: SearchController.cs プロジェクト: cayala/Portfolio
 public ActionResult SaveNewRestaurant(Restaurant r)
 {
     return Json(_searchService.AddToIndex(r));
 }
コード例 #3
0
ファイル: SearchService.cs プロジェクト: cayala/Portfolio
 public bool AddToIndex (Restaurant r)
 {
     return _repo.SaveToRepo(r);
 }