예제 #1
0
        public IAppointment Copy()
        {
            IAppointment appointment = new SqlExceptionAppointment();

            appointment.CopyFrom(this);
            return(appointment);
        }
예제 #2
0
        public IAppointment ShallowCopy()
        {
            var appointment = new SqlExceptionAppointment();

            appointment.CopyFrom(this);
            return(appointment);
        }