This class is responsible for all the REST communication with the audit REST endpoints
 /// <summary>
 /// Constructs a Server Disaster Recovery Configuration adapter
 /// </summary>
 /// <param name="profile">The current azure profile</param>
 /// <param name="subscription">The current azure subscription</param>
 public AzureSqlServerDisasterRecoveryConfigurationAdapter(IAzureContext context)
 {
     Context       = context;
     _subscription = context.Subscription;
     Communicator  = new AzureSqlServerDisasterRecoveryConfigurationCommunicator(Context);
 }
 /// <summary>
 /// Constructs a Server Disaster Recovery Configuration adapter
 /// </summary>
 /// <param name="profile">The current azure profile</param>
 /// <param name="subscription">The current azure subscription</param>
 public AzureSqlServerDisasterRecoveryConfigurationAdapter(AzureContext context)
 {
     Context = context;
     _subscription = context.Subscription;
     Communicator = new AzureSqlServerDisasterRecoveryConfigurationCommunicator(Context);
 }