Class ProductionSchedule
A production schedule.
[DataContract(IsReference = true)]
public class ProductionSchedule
- Inheritance
-
ProductionSchedule
- Inherited Members
Constructors
ProductionSchedule(int, string, DateTime)
Initializes a new instance of the ProductionSchedule class.
public ProductionSchedule(int productionScheduleId, string name, DateTime dateTimeUploaded)
Parameters
productionScheduleIdintThe unique identifier for this production schedule.
namestringThe production schedule name.
dateTimeUploadedDateTimeThe date/time that the production schedule was uploaded, in UTC.
Exceptions
- ArgumentNullException
nameis null.
Properties
DateTimeUploaded
Gets or sets the date/time that the production schedule was uploaded, in UTC.
[DataMember]
public DateTime DateTimeUploaded { get; }
Property Value
Name
Gets or sets the production schedule name.
[DataMember]
public string Name { get; }
Property Value
ProductionScheduleId
Gets the unique identifier for this production schedule.
[DataMember]
public int ProductionScheduleId { get; }