partial         void CopyExtraPropertiesToClone(AutomatedTestingScheduleInfo clone, bool includeLocalProperties);
 public AutomatedTestingScheduleInfo Clone(bool includeLocalProperties)
 {
     var c = new AutomatedTestingScheduleInfo
             {
                 Configuration = Configuration,
                 Description = Description,
                 Enabled = Enabled,
                 Id = Id,
                 IsRunning = IsRunning,
                 LastRun = LastRun,
                 NextRun = NextRun,
                 ScheduleId = ScheduleId,
                 StatusMessage = StatusMessage,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }