Skip to content

Instantly share code, notes, and snippets.

namespace OnlineStoreBackend
{
public interface IPersistenceManager
{
bool UsernameExists(string username);
void SaveAccount(string username, string password);
}
}