コード例 #1
0
ファイル: HomeController.cs プロジェクト: quangnle/Antelope
 public ActionResult Filter(string[] c1, string[] c2, string[] c3)
 {
     _accRepo = new AccountRepository(new MainModel());
     return View("Index", _accRepo.GetMatchedAcc(c1 == null ? false : true, c2 == null ? false : true, c3 == null ? false : true));
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: quangnle/Antelope
 public ActionResult Index()
 {
     _accRepo = new AccountRepository(new MainModel());
     return View(_accRepo.GetAll());
 }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: quangnle/Antelope
 public ActionResult Filter()
 {
     _accRepo = new AccountRepository(new MainModel());
     return View("Index", _accRepo.GetMatchedAcc(true,true,true));
 }