2018-06-16 08:31:52 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Teknik.GitService
|
|
|
|
|
{
|
|
|
|
|
public interface IGitService
|
|
|
|
|
{
|
|
|
|
|
bool AccountExists(string username);
|
|
|
|
|
|
|
|
|
|
DateTime LastActive(string username);
|
|
|
|
|
|
2019-02-03 07:55:47 +01:00
|
|
|
|
void CreateAccount(string username, string email, string password, string authId);
|
2018-06-16 08:31:52 +02:00
|
|
|
|
|
|
|
|
|
void EditPassword(string username, string email, string password);
|
|
|
|
|
|
|
|
|
|
void EnableAccount(string username, string email);
|
|
|
|
|
|
|
|
|
|
void DisableAccount(string username, string email);
|
|
|
|
|
|
|
|
|
|
void DeleteAccount(string username);
|
|
|
|
|
}
|
|
|
|
|
}
|