mwolfe02
/
how-to-create-a-scheduling-application-which-uses-custom-editing-and-recurrence-dialog-t545486
Public
forked from DevExpress-Examples/wpf-scheduler-specify-custom-edit-and-recurrence-dialogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Doctor.vb
19 lines (16 loc) · 691 Bytes
/
Doctor.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Imports DevExpress.Mvvm.POCO
Namespace CustomMvvmFormWithRecurrenceExample
Public Class Doctor
Public Shared Function Create() As Doctor
Return ViewModelSource.Create(Function() New Doctor())
End Function
Public Shared Function Create(ByVal Id As Integer, ByVal Name As String) As Doctor
Dim doctor_Renamed As Doctor = CustomMvvmFormWithRecurrenceExample.Doctor.Create()
doctor_Renamed.Id = Id
doctor_Renamed.Name = Name
Return doctor_Renamed
End Function
Public Overridable Property Id() As Integer
Public Overridable Property Name() As String
End Class
End Namespace