Ejemplo n.º 1
0
 public List <RolePermission> GetAll()
 {
     return(_rolePermissionRepository.GetAll());
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Retrieves all rolePermission from the database
 /// </summary>
 /// <returns><see cref="ICollection{RolePermissionDomain}"/></returns>
 public ICollection <RolePermissionDomain> GetAllRolePermissions()
 {
     return(_rolePermissionRepository.GetAll());
 }
Ejemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 /// <returns></returns>
 public IEnumerable <RolePermission> GetRolePermissions()
 {
     return(_rolePermissionRepository.GetAll());
 }