using Abp.Application.Services; using VberAdmin.Authorization.Accounts.Dto; using VberZero.AppService.Users.Dto; namespace VberAdmin.Authorization.Accounts; public interface IAccountAppService : IApplicationService { Task GetUserProfile(long? userId); Task UpdateUserProfile(UserProfileDto input); Task ChangePassword(ChangePasswordDto input); Task IsTenantAvailable(IsTenantAvailableInput input); Task Register(RegisterInput input); }