Example #1
0
        public MenuAccessController(IMenuAccessRepository repository, string catalog, LoginView view)
        {
            this._LoginId  = view.LoginId.ToLong();
            this._UserId   = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog  = catalog;

            this.MenuAccessRepository = repository;
        }
        public MenuAccessController(IMenuAccessRepository repository, string catalog, LoginView view)
        {
            this._LoginId = view.LoginId.ToLong();
            this._UserId = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog = catalog;

            this.MenuAccessRepository = repository;
        }
Example #3
0
        public MenuAccessController()
        {
            this._LoginId  = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId   = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog  = AppUsers.GetCurrentUserDB();

            this.MenuAccessRepository = new MixERP.Net.Schemas.Policy.Data.MenuAccess
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
        public MenuAccessController()
        {
            this._LoginId = AppUsers.GetCurrent().View.LoginId.ToLong();
            this._UserId = AppUsers.GetCurrent().View.UserId.ToInt();
            this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt();
            this._Catalog = AppUsers.GetCurrentUserDB();

            this.MenuAccessRepository = new MixERP.Net.Schemas.Policy.Data.MenuAccess
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }
Example #5
0
 public MenuAccessAppService(IMenuAccessRepository menuAccessRepository, ITopicAccessRepository topicAccessRepository, IMapper mapper)
 {
     _menuAccessRepository  = menuAccessRepository;
     _topicAccessRepository = topicAccessRepository;
     _mapper = mapper;
 }
Example #6
0
 public MenuAccessService(IMenuAccessRepository menuAccessRepository) : base(menuAccessRepository)
 {
     _menuAccessRepository = menuAccessRepository;
 }
Example #7
0
 public MenuController(IMenuAccessRepository menuAccessRepository)
 {
     this._menuAccessRepository = menuAccessRepository;
 }