Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Addon" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="Name">Name.</param>
 /// <param name="BasePrices">BasePrices.</param>
 public Addon(long?Id = null, string Name = null, BasePrice BasePrices = null)
 {
     this.Id         = Id;
     this.Name       = Name;
     this.BasePrices = BasePrices;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Accommodation" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="Name">Name.</param>
 /// <param name="Description">Description.</param>
 /// <param name="Capacity">Capacity.</param>
 /// <param name="BasePrices">BasePrices.</param>
 public Accommodation(long?Id = null, string Name = null, string Description = null, long?Capacity = null, BasePrice BasePrices = null)
 {
     this.Id          = Id;
     this.Name        = Name;
     this.Description = Description;
     this.Capacity    = Capacity;
     this.BasePrices  = BasePrices;
 }