コード例 #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
ファイル: transactionsScreen.cs プロジェクト: dabinett/POS
 /*---------------METHODS--------------------*/
 // Default constructor
 public Transaction()
 {
     this.items = 0;
     this.totals = new Money();
 }