private bool TryGetCardInformationInCardDataBase(TarotCardInformation card, string cardName)
 {
     if (cardName.Contains(card.cardEngName))
     {
         return(true);
     }
     return(false);
 }
 public void Remove(TarotCardInformation tarot)
 {
     database.Remove(tarot);
 }
 public void Add(TarotCardInformation tarot)
 {
     database.Add(tarot);
 }