public override IAppointment Copy()
        {
            IAppointment appointment = new CustomAppointment();

            appointment.CopyFrom(this);
            return(appointment);
        }
Ejemplo n.º 2
0
 public override IAppointment Copy()
 {
     IAppointment appointment = new CustomAppointment();
     appointment.CopyFrom(this);
     return appointment;
 }