Ejemplo n.º 1
0
 public virtual async Task <ListResultDto <MenuDto> > GetRoleMenuListAsync(string role, PlatformType platformType)
 {
     return(await MenuAppService.GetRoleMenuListAsync(new MenuGetByRoleInput
     {
         Role = role,
         PlatformType = platformType
     }));
 }
Ejemplo n.º 2
0
 public virtual async Task <ListResultDto <MenuDto> > GetRoleMenuListAsync(string role, string framework)
 {
     return(await MenuAppService.GetRoleMenuListAsync(new MenuGetByRoleInput
     {
         Role = role,
         Framework = framework
     }));
 }
Ejemplo n.º 3
0
 public virtual async Task <ListResultDto <MenuDto> > GetRoleMenuListAsync(MenuGetByRoleInput input)
 {
     return(await MenuAppService.GetRoleMenuListAsync(input));
 }