Beispiel #1
0
 public List <Event> GetAllEvents()
 {
     return(_eventRepo.GetAllEvents());
 }
Beispiel #2
0
        public async Task <IActionResult> GetEvents()
        {
            var data = await reo.GetAllEvents();

            return(Json(data));
        }