using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Win_in.Sfs.Auth.Application.Contracts; public interface IUserMenuAppService : ISfsAuthCrudAppService { Task> GetPdaListByUserAsync(Guid userId); Task> UpdatePdaListByUserAsync(Guid userId, List inputs); Task> GetPdaMenusOfUserAsync(Guid? userId); Task> GetWebListByUserAsync(Guid userId); Task> UpdateWebListByUserAsync(Guid userId, List inputs); Task> GetWebMenusOfUserAsync(Guid? userId); }