コード例 #1
0
ファイル: Index.cshtml.cs プロジェクト: Te1pert/WebZeitGit
 public async void OnGet()
 {
     if (HttpContext.Session.GetInt32("IsLoggedIn") == 1)
     {
         dtMitarbeiters = ControllerMitarbeiter.GetMitarbeiter(HttpContext.Session.GetInt32("Pid"));
     }
 }
コード例 #2
0
ファイル: Index.cshtml.cs プロジェクト: Te1pert/WebZeitGit
 public IActionResult OnPostMaSearch()
 {
     dtMitarbeiters = ControllerMitarbeiter.GetMitarbeiterBySearch(InputSearch);
     return(Page());
 }