This class is responsible for all the REST communication with the audit REST endpoints
 /// <summary>
 /// Constructs a Transparent Data Encryption adapter
 /// </summary>
 /// <param name="profile">The current azure profile</param>
 /// <param name="subscription">The current azure subscription</param>
 public AzureSqlDatabaseTransparentDataEncryptionAdapter(AzureProfile profile, AzureSubscription subscription)
 {
     Profile = profile;
     Communicator = new AzureSqlDatabaseTransparentDataEncryptionCommunicator(Profile, subscription);
 }
 /// <summary>
 /// Constructs a Transparent Data Encryption adapter
 /// </summary>
 /// <param name="profile">The current azure profile</param>
 /// <param name="subscription">The current azure subscription</param>
 public AzureSqlDatabaseTransparentDataEncryptionAdapter(AzureContext context)
 {
     Context = context;
     Communicator = new AzureSqlDatabaseTransparentDataEncryptionCommunicator(Context);
 }