using Govor.Core.Models; namespace Govor.API.Services.Authentication.Interfaces; public interface IAccountService { public Task RegistrationAsync(string name, string password, Invitation invitation); public Task LoginAsync(string name, string password); }