public HomeController(IMenuFunctionService _MenuFunctionService, IMenuFunctionConfigService _MenuFunctionConfigService, ISystemRecordService _SystemRecordService, ItblSystemConfigService _tblSystemConfigService)
 {
     this._MenuFunctionService       = _MenuFunctionService;
     this._MenuFunctionConfigService = _MenuFunctionConfigService;
     this._SystemRecordService       = _SystemRecordService;
     this._tblSystemConfigService    = _tblSystemConfigService;
 }
Exemple #2
0
 public MenuFunctionService(IMenuFunctionRepository _MenuFunctionRepository, IRoleMenuRepository roleMenuRepository, IUserRoleRepository userRoleRepository, IUnitOfWork unitOfWork, IMenuFunctionConfigService _MenuFunctionConfigService)
 {
     this._MenuFunctionRepository = _MenuFunctionRepository;
     this.roleMenuRepository      = roleMenuRepository;
     this.userRoleRepository      = userRoleRepository;
     this.unitOfWork = unitOfWork;
     this._MenuFunctionConfigService = _MenuFunctionConfigService;
 }