Beispiel #1
0
 public bool BanEvent([FromBody] BanUserEvent banUserEvent)
 {
     try
     {
         _banService.BanUserEvent(banUserEvent.UserId);
         return(true);
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
     return(false);
 }