Example #1
0
        protected virtual void Dispose(bool bDisposing)
        {
            // Check the Dispose method called before.
            if (!_bDisposed)
            {
                if (bDisposing)
                {
                    // Clean the resources used.
                    _customerbusiness = null;
                }

                _bDisposed = true;
            }
        }
Example #2
0
 public TransactionBusiness()
 {
     _customerbusiness = new CustomersBusiness();
 }