public void Map(ConstReminder poco) { poco.ReminderID = this.ReminderID; poco.ReminderName = this.ReminderName; poco.ReminderInterval = this.ReminderInterval; poco.ReminderType = this.ReminderType; poco.IsMedical = this.IsMedical; poco.IsLicense = this.IsLicense; }
public ReminderModel(ConstReminder poco) { this.ReminderID = poco.ReminderID; this.ReminderName = poco.ReminderName; this.ReminderInterval = poco.ReminderInterval; this.ReminderType = poco.ReminderType; this.IsMedical = poco.IsMedical; this.IsLicense = poco.IsLicense; this.IsChanged = false; }