/// <summary>
 /// Vote for th cat
 /// </summary>
 /// <param name="id">The identifier</param>
 public void Vote(string id)
 {
     try
     {
         _catRepository.Vote(id);
     }
     catch (Exception ex)
     {
         _logger.LogError(ex.Message);
         throw;
     }
 }