13 lines
313 B
C#
13 lines
313 B
C#
using _0_Framework.Domain;
|
|
using AccountManagement.Application.Contracts.Role;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Domain.RoleAgg
|
|
{
|
|
public interface IRoleRepository : IRepository<long, Role>
|
|
{
|
|
List<RoleViewModel> List();
|
|
EditRole GetDetails(long id);
|
|
}
|
|
}
|