Exemplo n.º 1
0
        public CreateMenuController(ICreateMenuRepository repository, string catalog, LoginView view)
        {
            this._LoginId  = view.LoginId.ToLong();
            this._UserId   = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog  = catalog;

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

            this.repository = repository;
        }
Exemplo n.º 3
0
 protected override void Initialize(HttpControllerContext context)
 {
     base.Initialize(context);
     if (this.repository == null)
     {
         this.repository = new CreateMenuProcedure
         {
             _Catalog = this.MetaUser.Catalog,
             _LoginId = this.MetaUser.LoginId,
             _UserId = this.MetaUser.UserId
         };
     }
 }
Exemplo n.º 4
0
        public CreateMenuController()
        {
            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.repository = new CreateMenuProcedure
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
        public CreateMenuController()
        {
            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.repository = new CreateMenuProcedure
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }
Exemplo n.º 6
0
 public CreateMenuController(ICreateMenuRepository repository)
 {
     this.repository = repository;
 }