Ejemplo n.º 1
0
 public ActionResult DeleteEntry(string ladderId, string platform, string username)
 {
     if (_ladderService.DeleteEntry(ladderId, platform, username))
     {
         _logger.LogInformation($"Entry <{platform},{username}> deleted from ladder <{ladderId}>");
         return(Ok());
     }
     return(NotFound());
 }