コード例 #1
0
 public IActionResult ListAllHumans()
 {
     return(View(HumanLogic.GetAll()));
 }
コード例 #2
0
ファイル: HumanController.cs プロジェクト: Broy1/BPROF_MVC
 public IEnumerable <Human> GetAllHuman()
 {
     return(logic.GetAll());
 }