/// <summary>
 /// Initializes a new instance of the <see cref="AlertsControllerTests"/> class.
 /// </summary>
 public AlertsControllerTests()
 {
     this.alertManager = new Mock<IAlertManager>();
     this.alertController = new AlertsController(this.alertManager.Object);
     Common.Dependencies.Register();
 }
 public AlertsServiceServerBased(AlertsController alertsController)
 {
     this.alertsController = alertsController;
 }