blob: 3b872942b8f73b12867f8e8674d31aea5b16e1ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Threading.Tasks;
namespace Timeline.Services.User
{
public interface IUserDeleteService
{
/// <summary>
/// Delete a user of given username.
/// </summary>
/// <param name="username">Username of the user to delete. Can't be null.</param>
/// <exception cref="ArgumentNullException">Thrown if <paramref name="username"/> is null.</exception>
/// <exception cref="ArgumentException">Thrown when <paramref name="username"/> is of bad format.</exception>
/// <exception cref="EntityNotExistException">Thrown when the user does not exist. </exception>
/// <exception cref="InvalidOperationOnRootUserException">Thrown when deleting root user.</exception>
Task DeleteUserAsync(string username);
}
}
|