public RuleApplicationServiceTest() : base()
        {
            CreateScope();

            _ruleApplicationService = GetIntanceScope <IRuleApplicationService>();
            _ruleRepository         = GetIntanceScope <IRuleRepository>();
            _unitOfWork             = GetIntanceScope <IUnitOfWork>();
        }
Esempio n. 2
0
 public RuleController(IMediator bus, INotificationHandler <DomainNotification> notifications, IRuleApplicationService ruleApplicationService) : base(bus, notifications)
 {
     _ruleApplicationService = ruleApplicationService;
 }