-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProduct.vb
More file actions
27 lines (23 loc) · 1.1 KB
/
Product.vb
File metadata and controls
27 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'------------------------------------------------------------------------------
' <auto-generated>
' Ce code a été généré à partir d'un modèle.
'
' Des modifications manuelles apportées à ce fichier peuvent conduire à un comportement inattendu de votre application.
' Les modifications manuelles apportées à ce fichier sont remplacées si le code est régénéré.
' </auto-generated>
'------------------------------------------------------------------------------
Imports System
Imports System.Collections.Generic
Partial Public Class Product
Public Property ProductId As Integer
Public Property ProductName As String
Public Property Amount As Nullable(Of Integer)
Public Property CreationDate As Nullable(Of Date)
Public Property ModificationDate As Nullable(Of Date)
Public Property Price As Nullable(Of Double)
Public Property Description As String
Public Property ProviderId As Nullable(Of Integer)
Public Property ProviderName As String
Public Property CategorieId As Nullable(Of Integer)
Public Overridable Property Categoire As Categoire
End Class