Example #1
0
 /// <summary>
 /// Initializes a new instance of the SubscriptionQuotas class with
 /// required arguments.
 /// </summary>
 public SubscriptionQuotas(string name, SubscriptionQuotasProperties properties)
     : this()
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Name       = name;
     this.Properties = properties;
 }
 /// <summary>
 /// Initializes a new instance of the SubscriptionQuotas class with
 /// required arguments.
 /// </summary>
 public SubscriptionQuotas(string name, SubscriptionQuotasProperties properties)
     : this()
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     this.Name = name;
     this.Properties = properties;
 }