Example #1
0
        /// <summary>
        /// Copies this instance.
        /// </summary>
        /// <returns>A <see cref="Telerik.Windows.Controls.ScheduleView.IAppointment"/></returns>
        public IAppointment Copy()
        {
            IAppointment copy = new ClinicianAppointmentDto();

            copy.CopyFrom(this);
            return(copy);
        }
 /// <summary>
 /// Copies this instance.
 /// </summary>
 /// <returns>A <see cref="Telerik.Windows.Controls.ScheduleView.IAppointment"/></returns>
 public IAppointment Copy()
 {
     IAppointment copy = new ClinicianAppointmentDto ();
     copy.CopyFrom ( this );
     return copy;
 }
Example #3
0
 /// <summary>
 /// Causes the object to enter editing mode.
 /// </summary>
 public void BeginEdit()
 {
     _cacheObject = new ClinicianAppointmentDto();
     _cacheObject.CopyFrom(this);
 }
 /// <summary>
 /// Causes the object to enter editing mode.
 /// </summary>
 public void BeginEdit()
 {
     _cacheObject = new ClinicianAppointmentDto ();
     _cacheObject.CopyFrom ( this );
 }