-
Notifications
You must be signed in to change notification settings - Fork 277
Closed
Description
SelectedAppointment = new AppointmentDataModel();
// test trivia
#pragma warning disable CS0618 // Type or member is obsolete
SelectedAppointment.Patient = SelectedPatient;
#pragma warning restore CS0618 // Type or member is obsolete
}becomes
SelectedAppointment = new AppointmentDataModel
{
Patient = SelectedPatient
};