Controldores.vb 282 B

123456789101112131415
  1. Public Class Controldores
  2. Private _TInstrumento As Integer
  3. Public Property TInstrumento As Integer
  4. Get
  5. Return _TInstrumento
  6. End Get
  7. Set(value As Integer)
  8. _TInstrumento = value
  9. End Set
  10. End Property
  11. End Class