mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
23 lines
601 B
C#
23 lines
601 B
C#
using System.Collections.Generic;
|
|
using Mhf.Server.Model;
|
|
|
|
namespace Mhf.Server.Database
|
|
{
|
|
public interface IDatabase
|
|
{
|
|
void Execute(string sql);
|
|
|
|
/// <summary>
|
|
/// Return true if database was created, or false if not.
|
|
/// </summary>
|
|
bool CreateDatabase();
|
|
|
|
// Account
|
|
Account CreateAccount(string name, string mail, string hash);
|
|
Account SelectAccountById(int accountId);
|
|
Account SelectAccountByName(string accountName);
|
|
bool UpdateAccount(Account account);
|
|
bool DeleteAccount(int accountId);
|
|
}
|
|
}
|