|
@@ -7,6 +7,8 @@ using GxPress.Request.Role;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Transactions;
|
|
|
+using AutoMapper;
|
|
|
+
|
|
|
namespace GxPress.Service.Implement.Role
|
|
|
{
|
|
|
public class RoleService : IRoleService
|
|
@@ -15,11 +17,14 @@ namespace GxPress.Service.Implement.Role
|
|
|
private readonly IMenusRepository menusRepository;
|
|
|
|
|
|
private readonly ISystemRoleRepository systemRoleRepository;
|
|
|
- public RoleService(ISystemRoleMenusRepository systemRoleMenusRepository, IMenusRepository menusRepository, ISystemRoleRepository systemRoleRepository)
|
|
|
+
|
|
|
+ private readonly IMapper _mapper;
|
|
|
+ public RoleService(ISystemRoleMenusRepository systemRoleMenusRepository, IMenusRepository menusRepository, ISystemRoleRepository systemRoleRepository,IMapper _mapper)
|
|
|
{
|
|
|
this.systemRoleRepository = systemRoleRepository;
|
|
|
this.systemRoleMenusRepository = systemRoleMenusRepository;
|
|
|
this.menusRepository = menusRepository;
|
|
|
+ this._mapper=_mapper;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 添加权限菜单关联
|
|
@@ -82,9 +87,11 @@ namespace GxPress.Service.Implement.Role
|
|
|
foreach (var item in models)
|
|
|
{
|
|
|
var id = await menusRepository.InsertAsync(item);
|
|
|
+ if (item.Children == null)
|
|
|
+ continue;
|
|
|
foreach (var menu in item.Children)
|
|
|
{
|
|
|
- await menusRepository.InsertAsync(menu);
|
|
|
+ await menusRepository.InsertAsync(_mapper.Map<Entity.Menus.Menus>(menu));
|
|
|
}
|
|
|
}
|
|
|
transactionScope.Complete();
|