using Sandbox.Models.ViewModels; namespace Sandbox.Services.AuthService; public interface IAuthService { Task> Register(string userName, string password); }