コード例 #1
0
ファイル: HomeController.cs プロジェクト: timborg-del/MyMvc
        public IActionResult CheckFever(int Temp)
        {
            string result = FeverCheck.Fever(Temp);

            ViewBag.CheckFever = result;
            return(View());
        }
コード例 #2
0
 public IActionResult Index(int temperature, string celciusfahrenheit)
 {
     ViewBag.Index = FeverCheck.Fever(temperature, celciusfahrenheit);
     return(View());
 }