Exemple #1
0
 public async Task DeleteEvent(long eventId)
 {
     try
     {
         await _eventAppService.DeleteEvents(eventId);
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         throw;
     }
 }