Beispiel #1
0
 public IActionResult OnGet()
 {
     LearningDataEntries = _learningDataRepo.RetrieveAll();
     CategoryEntries     = _learningDataRepo.RetrieveAllCategoryData();
     return(Page());
 }
 public IActionResult GetAll()
 {
     return(Ok(_learningDataRepo.RetrieveAll()));
 }