home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETSDK / SETUP.EXE / netfxsd1.cab / FL_MoveMoney_h________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Text File  |  2002-05-06  |  1.2 KB  |  35 lines

  1. // ==============================================================================
  2. // Filename: MoveMoney.h
  3. //
  4. // Summary:  managed cpp definition of the MoveMoney class for the bank sample
  5. // Classes:  MoveMoney
  6. //
  7. // This file is part of the Microsoft COM+ Samples
  8. //
  9. // Copyright (C) Microsoft Corporation. All rights reserved
  10. //
  11. // This source code is intended only as a supplement to Microsoft
  12. // Development Tools and/or on-line documentation.  See these other
  13. // materials for detailed information reagrding Microsoft code samples.
  14. //
  15. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  16. // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17. // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  18. // PARTICULAR PURPOSE.
  19. //
  20.  
  21. namespace VC7Bank
  22. {
  23.  
  24.     [
  25.         Transaction(TransactionOption::Required)
  26.     ]
  27.     public __gc class MoveMoney : public ServicedComponent, public IMoveMoney
  28.     {
  29.     public:
  30.         String* Perform (int lngPrimeAccount, int lngSecondAccount, int lngAmount, int tranType);
  31.  
  32.     private:
  33.         String* truePerform (int lngPrimeAccount, int lngSecondAccount, int lngAmount, int tranType);
  34.     };
  35. }