You are on page 1of 2

Public class 10

#Region " Private variables "


Private _sc_no as
Private _VoucherNumber as Integer
Private _SupplierID as Integer
Private _BillDate as Date
Private _BillNo as Integer
Private _BillAmount as single
Private _PONo as string
Private _DueDate as Date
Private _Reference as string
Private _statuspaid as
# end Region
#Region " Properties "
Public Property sc_no() As
Get
return _sc_no
end Get
Set(ByVal Value As )
_sc_no = Value
end set
end Property
Public Property VoucherNumber() As Integer
Get
return _VoucherNumber
end Get
Set(ByVal Value As Integer)
_VoucherNumber = Value
end set
end Property
Public Property SupplierID() As Integer
Get
return _SupplierID
end Get
Set(ByVal Value As Integer)
_SupplierID = Value
end set
end Property
Public Property BillDate() As Date
Get
return _BillDate
end Get
Set(ByVal Value As Date)
_BillDate = Value
end set
end Property
Public Property BillNo() As Integer
Get
return _BillNo
end Get
Set(ByVal Value As Integer)
_BillNo = Value
end set
end Property
Public Property BillAmount() As single
Get
return _BillAmount
end Get
Set(ByVal Value As single)
_BillAmount = Value
end set
end Property
Public Property PONo() As string
Get
return _PONo
end Get
Set(ByVal Value As string)
_PONo = Value
end set
end Property
Public Property DueDate() As Date
Get
return _DueDate
end Get
Set(ByVal Value As Date)
_DueDate = Value
end set
end Property
Public Property Reference() As string
Get
return _Reference
end Get
Set(ByVal Value As string)
_Reference = Value
end set
end Property
Public Property statuspaid() As
Get
return _statuspaid
end Get
Set(ByVal Value As )
_statuspaid = Value
end set
end Property

# end Region
end class

You might also like