예제 #1
0
파일: Transaction.cs 프로젝트: strongd/POS
        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];
        }
예제 #2
0
 /*---------------METHODS--------------------*/
 // Default constructor
 public Transaction()
 {
     this.items = 0;
     this.totals = new Money();
 }