コード例 #1
0
ファイル: AnalysisController.cs プロジェクト: joyoon/mb
 public ActionResult GuidingPrinciple(string title, string key)
 {
     GuidingPrincipleViewModel model = new GuidingPrincipleViewModel()
     {
         Title = title,
         Key = key
     };
     return PartialView("_GuidingPrinciple", model);
 }
コード例 #2
0
ファイル: AnalysisController.cs プロジェクト: joyoon/mb
 public ActionResult FactorInstruction(string title, int factorTypeId)
 {
     GuidingPrincipleViewModel model = new GuidingPrincipleViewModel()
     {
         Title = title,
         Key = LookUpFactorInstruction(factorTypeId)
     };
     return PartialView("_GuidingPrinciple", model);
 }