public MenuActionService(IMenuActionRepository menuActionRepository, ISystemActionService systemActionService, ISystemControllerService systemControllerService, IMenuService menuService, IMapper mapper)
 {
     _menuActionRepository    = menuActionRepository;
     _systemActionService     = systemActionService;
     _systemControllerService = systemControllerService;
     _menuService             = menuService;
     _mapper = mapper;
 }
 public SystemControllerController(ISystemControllerService SystemControllerService, ISystemActionService systemActionService)
 {
     _SystemControllerService = SystemControllerService;
     _systemActionService     = systemActionService;
 }
Пример #3
0
 public SystemActionService(ISystemActionRepository systemActionRepository, ISystemControllerService systemControllerService, IMapper mapper)
 {
     _systemActionRepository  = systemActionRepository;
     _systemControllerService = systemControllerService;
     _mapper = mapper;
 }