/// <summary>
 /// Deprecated Method for adding a new object to the ScheduleConfigurations EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToScheduleConfigurations(ScheduleConfiguration scheduleConfiguration)
 {
     base.AddObject("ScheduleConfigurations", scheduleConfiguration);
 }
 /// <summary>
 /// Create a new ScheduleConfiguration object.
 /// </summary>
 /// <param name="assemblyName">Initial value of the AssemblyName property.</param>
 /// <param name="typeName">Initial value of the TypeName property.</param>
 /// <param name="interval">Initial value of the Interval property.</param>
 /// <param name="dueTime">Initial value of the DueTime property.</param>
 /// <param name="paused">Initial value of the Paused property.</param>
 /// <param name="canPause">Initial value of the CanPause property.</param>
 /// <param name="id">Initial value of the Id property.</param>
 public static ScheduleConfiguration CreateScheduleConfiguration(global::System.String assemblyName, global::System.String typeName, global::System.Int64 interval, global::System.Int32 dueTime, global::System.Byte paused, global::System.Byte canPause, global::System.Int64 id)
 {
     ScheduleConfiguration scheduleConfiguration = new ScheduleConfiguration();
     scheduleConfiguration.AssemblyName = assemblyName;
     scheduleConfiguration.TypeName = typeName;
     scheduleConfiguration.Interval = interval;
     scheduleConfiguration.DueTime = dueTime;
     scheduleConfiguration.Paused = paused;
     scheduleConfiguration.CanPause = canPause;
     scheduleConfiguration.Id = id;
     return scheduleConfiguration;
 }