18 lines
674 B
C#
18 lines
674 B
C#
using System.Collections.Generic;
|
|
using LaDOSE.Entity;
|
|
|
|
namespace LaDOSE.Business.Interface
|
|
{
|
|
public interface IUserService
|
|
{
|
|
ApplicationUser Authenticate(string username, string password);
|
|
IEnumerable<ApplicationUser> GetAll();
|
|
ApplicationUser GetById(int id);
|
|
ApplicationUser Create(ApplicationUser user, string password, IEnumerable<string> roleNames = null);
|
|
void Update(ApplicationUser user, string password = null);
|
|
void Delete(int id);
|
|
|
|
/// <summary>The roles that exist in the database — reference data, not created at runtime.</summary>
|
|
IEnumerable<ApplicationRole> GetAllRoles();
|
|
}
|
|
} |