public tblCardGroupService(ItblCardGroupRepository _tblCardGroupRepository, IUser_AuthGroupService _User_AuthGroupService, IUnitOfWork _UnitOfWork)
        {
            this._tblCardGroupRepository = _tblCardGroupRepository;
            this._UnitOfWork             = _UnitOfWork;

            this._User_AuthGroupService = _User_AuthGroupService;

            AuthCardGroupIds = _User_AuthGroupService.GetAuthCardGroupIds();
        }
예제 #2
0
 public UserController(IUserService _UserService, IMenuFunctionService _MenuFunctionService, IUserRoleService _UserRoleService, IRoleService _RoleService, ItblSystemConfigService _tblSystemConfigService, IUser_AuthGroupService _User_AuthGroupService, ItblCardGroupService _tblCardGroupService)
 {
     this._UserService            = _UserService;
     this._MenuFunctionService    = _MenuFunctionService;
     this._UserRoleService        = _UserRoleService;
     this._RoleService            = _RoleService;
     this._tblSystemConfigService = _tblSystemConfigService;
     this._User_AuthGroupService  = _User_AuthGroupService;
     this._tblCardGroupService    = _tblCardGroupService;
 }
예제 #3
0
 public ExtendCardService(IExtendCardRepository _ExtendCardRepository, IUser_AuthGroupService _User_AuthGroupService, IUnitOfWork _UnitOfWork)
 {
     this._ExtendCardRepository = _ExtendCardRepository;
     this._UnitOfWork           = _UnitOfWork;
     AuthCardGroupIds           = _User_AuthGroupService.GetAuthCardGroupIds();
 }