You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
710 B
17 lines
710 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Win_in.Sfs.Auth.Application.Contracts;
|
|
|
|
public interface IUserMenuAppService : ISfsAuthCrudAppService<UserMenuDto, SfsAuthRequestInputBase, UserMenuCreateInput>
|
|
{
|
|
|
|
Task<List<UserMenuDto>> GetPdaListByUserAsync(Guid userId);
|
|
Task<List<UserMenuDto>> UpdatePdaListByUserAsync(Guid userId, List<UserMenuCreateInput> inputs);
|
|
Task<List<MenuDto>> GetPdaMenusOfUserAsync(Guid? userId);
|
|
|
|
Task<List<UserMenuDto>> GetWebListByUserAsync(Guid userId);
|
|
Task<List<UserMenuDto>> UpdateWebListByUserAsync(Guid userId, List<UserMenuCreateInput> inputs);
|
|
Task<List<MenuDto>> GetWebMenusOfUserAsync(Guid? userId);
|
|
}
|
|
|