/// <summary>
 /// Initializes a new instance of the RecoveryServicesProvider class
 /// with required arguments.
 /// </summary>
 public RecoveryServicesProvider(RecoveryServicesProviderProperties properties, string location)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     this.Properties = properties;
     this.Location   = location;
 }
 /// <summary>
 /// Initializes a new instance of the RecoveryServicesProvider class
 /// with required arguments.
 /// </summary>
 public RecoveryServicesProvider(RecoveryServicesProviderProperties properties, string location)
     : this()
 {
     if (properties == null)
     {
         throw new ArgumentNullException("properties");
     }
     if (location == null)
     {
         throw new ArgumentNullException("location");
     }
     this.Properties = properties;
     this.Location = location;
 }