/// <summary> /// Initializes a new instance of the ManagedOfferUnlinkParameters /// class with required arguments. /// </summary> public ManagedOfferUnlinkParameters(PlanReferenceDefinition planReference) : this() { if (planReference == null) { throw new ArgumentNullException("planReference"); } this.PlanReference = planReference; }
/// <summary> /// Initializes a new instance of the ManagedOfferLinkParameters class /// with required arguments. /// </summary> public ManagedOfferLinkParameters(PlanReferenceDefinition planReference) : this() { if (planReference == null) { throw new ArgumentNullException("planReference"); } this.PlanReference = planReference; }