public CustomAttributeRuleController(ICustomAttributeRuleService service,
                                      IPresenter <CustomAttributeRuleViewModel, GeneralRule> presenter)
 {
     _service   = service;
     _presenter = presenter;
 }
 public NormalizedLogPresenter(IParsingRulesService parsingRulesService,
   ICustomAttributeRuleService customAttributeRuleService)
 {
   _parsingRulesService = parsingRulesService;
   _customAttributeRuleService = customAttributeRuleService;
 }
 public ParsingRulesPresenter(ICustomAttributeRuleService customAttributeRuleService,
                              IComponentService componentService)
 {
     _customAttributeRuleService = customAttributeRuleService;
     _componentService           = componentService;
 }