Beispiel #1
0
 public bool Equals(MoneyBag other)
 {
     return(Equals(other as IMoney));
 }
Beispiel #2
0
 public MoneyBag(MoneyBag money)
     : this(money._bag)
 {
 }
Beispiel #3
0
		IMoney IMoney.Add(IMoney money)
		{
			var m = new MoneyBag(_bag);
			m.AppendMoney(money);
			return m;
		}