コード例 #1
0
ファイル: AlienController.cs プロジェクト: a18antsv/Alien.NET
 public IActionResult ManageAlienProperties(string id)
 {
     model = new AlienModel(HttpContext.Session.GetString("dbusername"), HttpContext.Session.GetString("dbpassword"));
     ViewBag.HasProperties    = model.GetAlienHasProperties(id);
     ViewBag.NotHasProperties = model.GetAlienNotHasProperties(id);
     ViewBag.Alienkey         = id;
     return(View());
 }