コード例 #1
0
ファイル: PromotionController.cs プロジェクト: hkouns/bvcms
 public ActionResult AssignPending()
 {
     var m = new PromotionModel();
     UpdateModel(m);
     m.AssignPending();
     return RedirectToAction("Index");
 }
コード例 #2
0
ファイル: PromotionController.cs プロジェクト: hkouns/bvcms
 public ActionResult List()
 {
     var m = new PromotionModel();
     UpdateModel(m);
     return PartialView("List", m);
 }
コード例 #3
0
ファイル: PromotionController.cs プロジェクト: hkouns/bvcms
 public ActionResult Index()
 {
     var m = new PromotionModel();
     UpdateModel(m);
     return View(m);
 }
コード例 #4
0
ファイル: PromotionController.cs プロジェクト: hkouns/bvcms
 public ActionResult Export()
 {
     var m = new PromotionModel();
     UpdateModel(m);
     return new ExcelResult(m.Export(), "promotion.xls");
 }
コード例 #5
0
 public ActionResult List(PromotionModel m)
 {
     return View("List", m);
 }
コード例 #6
0
 public ActionResult AssignPending(PromotionModel m)
 {
     m.AssignPending();
     return RedirectToAction("Index");
 }
コード例 #7
0
 public ActionResult Reload(PromotionModel m)
 {
     return Redirect("/Promotion");
 }
コード例 #8
0
 public ActionResult Export()
 {
     var m = new PromotionModel();
     UpdateModel(m);
     return new ExcelResult { Data = m.Export(), FileName = "promotion.xls" };
 }