public BindableAppointmentSlotDuration(AppointmentSlotDuration value)
 {
     Duration = value;
     DisplayName = value.GetAttributeValue<DisplayAttribute, string>(displayNameAttribute => displayNameAttribute.Name);
     Order = value.GetAttributeValue<DisplayAttribute, int>(displayNameAttribute => displayNameAttribute.Order);
 }
Esempio n. 2
0
 public BindableAppointmentSlotDuration(AppointmentSlotDuration value)
 {
     Duration    = value;
     DisplayName = value.GetAttributeValue <DisplayAttribute, string>(displayNameAttribute => displayNameAttribute.Name);
     Order       = value.GetAttributeValue <DisplayAttribute, int>(displayNameAttribute => displayNameAttribute.Order);
 }