public async Task <ActionResult <Models.DB.Transformer> > Get(int id)
 {
     try
     {
         return(await _warService.GetTransformer(id));
     }
     catch (TransformerWarsException ex)
     {
         _logger.LogError(ex, "Error Getting Transformer#" + id);
         return(NotFound());
     }
 }