Advertisement
sany_ok

Untitled

Aug 23rd, 2014
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. '============================== The Beginning of the Copyright Notice =================================
  2. ' THE AULIX DATABASE MANAGER SOFTWARE PRODUCT
  3. ' The AUTHOR of this file is Alexander Borisovich Prokopyev, Kurgan, Russia
  4. ' More info can be found at the AUTHOR's website: http://www.aulix.com/resume and http://aulix.com/software/adbm
  5. ' Contact: alexander.prokopyev at aulix dot com
  6. '
  7. ' Copyright (c) Alexander Prokopyev, 2006-2014
  8. '
  9. ' All materials contained in this file are protected by copyright law.
  10. ' Nobody except the AUTHOR may alter or remove this copyright notice from copies of the content.
  11. '
  12. ' The AUTHOR explicitly prohibits to use this content by any method without a prior
  13. ' written hand-signed permission of the AUTHOR.
  14. '================================= The End of the Copyright Notice ====================================
  15.  
  16.  
  17. Imports Aulix.Common7.Data
  18. Imports Aulix.Common7.Utils
  19. Imports Aulix.DatabaseManager.BL
  20. Namespace BL
  21.     <RummageKeepReflectionSafe()> _
  22.     Public Class _DatabaseDef
  23.         Inherits NHObject
  24.         Public [Name] As System.String
  25.         Public [IsSelected] As System.Boolean
  26.         Public [Node] As AulixNode
  27.     End Class
  28.     <RummageKeepReflectionSafe()> _
  29.     Public Class _DatabaseDefXDatabaseGroup
  30.         Inherits NHObject
  31.         Public [DatabaseDef] As AulixDatabaseDef
  32.         Public [DatabaseGroup] As AulixDatabaseGroup
  33.     End Class
  34.     <RummageKeepReflectionSafe()> _
  35.     Public Class _DatabaseGroup
  36.         Inherits NHObject
  37.         Public [Name] As System.String
  38.     End Class
  39.     <RummageKeepReflectionSafe()> _
  40.     Public Class _Node
  41.         Inherits NHObject
  42.         Public [Name] As System.String
  43.         Public [IPAddress] As System.String
  44.         Public [Port] As System.String
  45.         Public [InstanceName] As System.String
  46.         Public [ServerType_EID] As ServerTypeEnum
  47.         Public [Version] As System.String
  48.         Public [AdminLogin] As System.String
  49.         Public [AdminPassword] As System.String
  50.     End Class
  51.     <RummageKeepReflectionSafe()> _
  52.     Public Class _SQLCommand
  53.         Inherits NHObject
  54.         Public [Name] As System.String
  55.         Public [SQLText] As System.String
  56.         Public [CommandType_EID] As CommandTypeEnum
  57.         Public [OnSchema] As System.String
  58.         Public [OnTable] As System.String
  59.     End Class
  60. End Namespace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement