public async Task <List <DeptNodeDto> > GetList() { return(await _deptService.GetList()); }
public async Task <ActionResult <List <DeptNodeDto> > > GetList() { return(Result(await _deptService.GetList())); }