This class is responsible for all the REST communication with the security alert REST endpoints
 public SqlThreatDetectionAdapter(IAzureContext context)
 {
     Context = context;
     ThreatDetectionCommunicator = new ThreatDetectionEndpointsCommunicator(Context);
     AzureCommunicator           = new AzureEndpointsCommunicator(Context);
     AuditingAdapter             = new SqlAuditAdapter(context);
 }
 public SqlThreatDetectionAdapter(AzureContext context)
 {
     Context = context;
     Subscription = context.Subscription;
     ThreatDetectionCommunicator = new ThreatDetectionEndpointsCommunicator(Context);
     AzureCommunicator = new AzureEndpointsCommunicator(Context);
     AuditingAdapter = new SqlAuditAdapter(context);
 }