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

            return(Json(data));
        }