/// <summary>
 /// Initializes a new instance of the <see cref="QuantiyIntervalPrice" /> class.
 /// </summary>
 /// <param name="From">From.</param>
 /// <param name="Until">Until.</param>
 /// <param name="Price">Price.</param>
 public QuantiyIntervalPrice(long?From = null, long?Until = null, Price Price = null)
 {
     this.From  = From;
     this.Until = Until;
     this.Price = Price;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OneTimePay" /> class.
 /// </summary>
 /// <param name="Cost">Cost.</param>
 /// <param name="WhenPay">WhenPay.</param>
 public OneTimePay(Price Cost = null, WhenPayEnum?WhenPay = null)
 {
     this.Cost    = Cost;
     this.WhenPay = WhenPay;
 }