public NotificationManager(
     INotificationDal notificationDal,
     IReportCalculator reportCalculator,
     IProcessingStateDal processingStateDal,
     INotificationReportDal reportDal)
 {
     _notificationDal    = notificationDal;
     _reportCalculator   = reportCalculator;
     _processingStateDal = processingStateDal;
     _reportDal          = reportDal;
 }
		public ReportCalculatorRpcService(IReportCalculator calculator)
		{
			_calculator = calculator;
		}
		public AppServicesRpc(IReportCalculator calculator)
		{
			_calculator = calculator;
		}