public IAppointment Copy() { IAppointment appointment = new SqlExceptionAppointment(); appointment.CopyFrom(this); return(appointment); }
public IAppointment ShallowCopy() { var appointment = new SqlExceptionAppointment(); appointment.CopyFrom(this); return(appointment); }