示例#1
0
 public NotificationEngine(QMSContext qMSContext)
 {
     context = qMSContext;
     notificationRepository = new NotificationRepository(context);
     userRepository = new UserRepository(context);
     correctiveActionRepository = new CorrectiveActionRepository(context);
 }        
示例#2
0
 internal CorrectiveActionRoutingEngine(CorrectiveActionService caService)
 {
     correctiveActionService    = caService;
     referenceRepository        = caService.referenceRepository;
     correctiveActionRepository = caService.correctiveActionRepository;
 }
 public CorrectiveActionNotificationEngine(QMSContext qMSContext) : base(qMSContext)
 {
     correctiveActionRepository = new CorrectiveActionRepository(context);
 }