コード例 #1
0
        public IAppointment Copy()
        {
            IAppointment appointment = new SqlAppointment();

            appointment.CopyFrom(this);
            return(appointment);
        }
コード例 #2
0
 public SqlRecurrenceRule(SqlAppointment appointment)
     : this()
 {
     this.MasterAppointment = appointment;
 }