Class OfferingDates
The dates on which a product is offered at a centre
Inheritance
System.Object
OfferingDates
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: EC.ProductsAndPricing.ServiceContract.Product
Assembly: EC.ProductsAndPricing.ServiceContract.dll
Syntax
public class OfferingDates
Properties
View SourceAllowedUnits
The allowed number of units
Declaration
public List<NumberOfUnits> AllowedUnits { get; set; }
DisallowDays
Days not allowed
Declaration
public IList<Weekday> DisallowDays { get; set; }
ExtraStartDates
Declaration
public List<Date> ExtraStartDates { get; set; }
From
The offering starts on this date
Declaration
public Date From { get; set; }
Property Type:
Date
View Source
StartDateType
Indicates how allowed start dates are arrived at
Declaration
public OfferingStartType StartDateType { get; set; }
Property Type:
OfferingStartType
View Source
StartingDays
The days that you can start on
Declaration
public IList<Weekday> StartingDays { get; set; }
Remarks
Will be null
unless Start
To
The offering ends on this date
Declaration
public Date? To { get; set; }