/// <summary>
 /// Initializes a new instance of the <see cref="UpdateBusinessUnitSettings" /> class.
 /// </summary>
 /// <param name="ShortTermForecasting">Short term forecasting settings.</param>
 /// <param name="Scheduling">Scheduling settings.</param>
 /// <param name="Metadata">Version metadata for this business unit (required).</param>
 public UpdateBusinessUnitSettings(BuShortTermForecastingSettings ShortTermForecasting = null, BuSchedulingSettings Scheduling = null, WfmVersionedEntityMetadata Metadata = null)
 {
     this.ShortTermForecasting = ShortTermForecasting;
     this.Scheduling           = Scheduling;
     this.Metadata             = Metadata;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BusinessUnitSettings" /> class.
 /// </summary>
 /// <param name="StartDayOfWeek">The start day of week for this business unit (required).</param>
 /// <param name="TimeZone">The time zone for this business unit, using the Olsen tz database format (required).</param>
 /// <param name="ShortTermForecasting">Short term forecasting settings.</param>
 /// <param name="Scheduling">Scheduling settings.</param>
 /// <param name="Metadata">Version metadata for this business unit (required).</param>
 public BusinessUnitSettings(StartDayOfWeekEnum?StartDayOfWeek = null, string TimeZone = null, BuShortTermForecastingSettings ShortTermForecasting = null, BuSchedulingSettings Scheduling = null, WfmVersionedEntityMetadata Metadata = null)
 {
     this.StartDayOfWeek       = StartDayOfWeek;
     this.TimeZone             = TimeZone;
     this.ShortTermForecasting = ShortTermForecasting;
     this.Scheduling           = Scheduling;
     this.Metadata             = Metadata;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CreateBusinessUnitSettings" /> class.
 /// </summary>
 /// <param name="StartDayOfWeek">The start day of week for this business unit (required).</param>
 /// <param name="TimeZone">The time zone for this business unit, using the Olsen tz database format (required).</param>
 /// <param name="ShortTermForecasting">Short term forecasting settings.</param>
 /// <param name="Scheduling">Scheduling settings.</param>
 public CreateBusinessUnitSettings(StartDayOfWeekEnum?StartDayOfWeek = null, string TimeZone = null, BuShortTermForecastingSettings ShortTermForecasting = null, BuSchedulingSettings Scheduling = null)
 {
     this.StartDayOfWeek       = StartDayOfWeek;
     this.TimeZone             = TimeZone;
     this.ShortTermForecasting = ShortTermForecasting;
     this.Scheduling           = Scheduling;
 }