Beispiel #1
0
 public void Add(ArticleCount articleCount)
 {
     Add(articleCount.Article, articleCount.Count);
 }
Beispiel #2
0
 public void Remove(ArticleCount ac)
 {
     if (this[ac.Article].Count - ac.Count == 0)
         Remove(ac.Article);
     else
     {
         this[ac.Article].Count -= ac.Count;
     }
 }