public async Task <bool> DeleteEvent(int id, Event e)
 {
     return(await _eventRepo.RemoveAsync(id, e));
 }