Beispiel #1
0
        public CardInventoryEntryViewModel(Card card, ICardCountService cardCountService)
        {
            this.cardCountService = cardCountService;

            _card = card;
            Name  = IsPremium ? $"{CardName} (P)" : CardName;
            Value = CardType;
        }
 public CardInventoryViewModel(DataRecom save, ICardCountService cardCountService) :
     this(GetEntries(save, cardCountService))
 {
 }