Esempio n. 1
0
        private Money totals; // Stores totals of the transaction

        #endregion Fields

        #region Constructors

        // Default constructor
        public Transaction()
        {
            this.numOfItems = 0;
            this.totals = new Money();
            this.items = new int[100];
        }
Esempio n. 2
0
 /*---------------METHODS--------------------*/
 // Default constructor
 public Transaction()
 {
     this.items = 0;
     this.totals = new Money();
 }