コード例 #1
0
ファイル: FlyerController.cs プロジェクト: themarcuz/BusBook
 public ActionResult ListPartial(int idAgenzia)
 {
     var model = new ListFlyerView() { agenzia = agenziaRepo.GetById(idAgenzia), flyers = flyerRepo.GetFlyersPerAgenzia(idAgenzia, limitResults) };
     return PartialView(model);
 }
コード例 #2
0
ファイル: SiteController.cs プロジェクト: themarcuz/BusBook
 public ActionResult Index(int id)
 {
     var model = new ListFlyerView() { agenzia = agenziaRepo.GetById(id), flyers = flyerRepo.GetFlyersPerAgenzia(id) };
     return View("Index",model);
 }
コード例 #3
0
ファイル: FlyerController.cs プロジェクト: themarcuz/BusBook
 public ActionResult List(int idAgenzia)
 {
     var model = new ListFlyerView() { agenzia = agenziaRepo.GetById(idAgenzia), flyers = flyerRepo.GetFlyersPerAgenzia(idAgenzia) };
     return View(model);
 }