Exemplo n.º 1
0
 public NotificationManager(
     INotificationDal notificationDal,
     IReportCalculator reportCalculator,
     IProcessingStateDal processingStateDal,
     INotificationReportDal reportDal)
 {
     _notificationDal    = notificationDal;
     _reportCalculator   = reportCalculator;
     _processingStateDal = processingStateDal;
     _reportDal          = reportDal;
 }
Exemplo n.º 2
0
 public NotificationManager(INotificationDal notificationDal)
 {
     _notificationDal = notificationDal;
 }
Exemplo n.º 3
0
 public ApplyManager(IApplyDal applyDal, INotificationDal notificationDal, ICurriculumVitaeDal curriculumVitaeDal)
 {
     _applyDal           = applyDal;
     _notificationDal    = notificationDal;
     _curriculumVitaeDal = curriculumVitaeDal;
 }