/// <summary> /// Constructs a ServiceObjective adapter /// </summary> /// <param name="profile">The current azure profile</param> /// <param name="subscription">The current azure subscription</param> public AzureSqlServerServiceObjectiveAdapter(AzureContext context) { Context = context; Communicator = new AzureSqlServerServiceObjectiveCommunicator(Context); }
/// <summary> /// Constructs a ServiceObjective adapter /// </summary> /// <param name="profile">The current azure profile</param> /// <param name="subscription">The current azure subscription</param> public AzureSqlServerServiceObjectiveAdapter(AzureProfile profile, AzureSubscription subscription) { Profile = profile; Communicator = new AzureSqlServerServiceObjectiveCommunicator(Profile, subscription); }