Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the TableProperties class with
 /// required arguments.
 /// </summary>
 public TableProperties(TableLocation location, Availability availability)
     : this()
 {
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (availability == null)
     {
         throw new ArgumentNullException("availability");
     }
     this.Location     = location;
     this.Availability = availability;
 }
 /// <summary>
 /// Initializes a new instance of the TableProperties class with
 /// required arguments.
 /// </summary>
 public TableProperties(TableLocation location, Availability availability)
     : this()
 {
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     if (availability == null)
     {
         throw new ArgumentNullException("availability");
     }
     this.Location = location;
     this.Availability = availability;
 }