namespace WorkTracker.Services.Auth; public interface IAuthService { Task EnsureSeedUserAsync(CancellationToken cancellationToken); Task ValidateCredentialsAsync(string username, string password, CancellationToken cancellationToken); Task ChangePasswordAsync(string userId, string newPassword, CancellationToken cancellationToken); }