public AC_RoleController(IAC_RoleService aC_RoleService, IAC_ModuleService _ModuleService,
                          IAC_FunctionService _FunctionService)
 {
     _aC_RoleService       = aC_RoleService;
     this._ModuleService   = _ModuleService;
     this._FunctionService = _FunctionService;
 }
 public AC_ModuleController(IAC_ModuleService aC_ModuleService)
 {
     _aC_ModuleService = aC_ModuleService;
 }
Beispiel #3
0
 public AC_FunctionController(IAC_FunctionService aC_FunctionService, IAC_ModuleService aC_ModuleService)
 {
     _aC_FunctionService = aC_FunctionService;
     _aC_ModuleService   = aC_ModuleService;
 }
Beispiel #4
0
 public void Init()
 {
     BrEngineContext.Init(null);
     this._acModuleService = BrEngineContext.Current.Resolve <IAC_ModuleService>();
 }