示例#1
0
        public bool AddTransaction(decimal amount, int UsedByCustomerID, int OrderNumber)
        {
            GiftCardUsageTransaction ut = GiftCardUsageTransaction.CreateTransaction(this.GiftCardID, GiftCardUsageReasons.UsedByCustomer, UsedByCustomerID, OrderNumber, amount, "");

            RefreshCard();
            m_giftcardransactions = null;
            return(ut != null);
        }
示例#2
0
 public GiftCardTransactionsEnumerator(GiftCardTransactions transactions)
 {
     this.transactions = transactions;
 }