public int TakeMoney(Bill bill)
        {
            money += bill.Value();
            bills[bill.Value()]++;

            return money;
        }