コード例 #1
0
        public async Task <List <Base_ActionDTO> > GetMenuTreeList(Base_ActionsTreeInputDTO input)
        {
            input.selectable = true;
            input.types      = new List <int> {
                0, 1
            };

            return(await _actionBus.GetTreeDataListAsync(input));
        }
コード例 #2
0
        public async Task <List <Base_ActionDTO> > GetActionTreeList(Base_ActionsTreeInputDTO input)
        {
            input.selectable = false;

            return(await _actionBus.GetTreeDataListAsync(input));
        }