Example #1
0
 public PermissionService(YunZhiDbContext context) : base(context)
 {
 }
Example #2
0
 public RoleService(YunZhiDbContext context) : base(context)
 {
 }
Example #3
0
 public OperationService(YunZhiDbContext context, IRoleService roleService) : base(context)
 {
     _roleService = roleService;
 }
Example #4
0
 public UserGroupService(YunZhiDbContext context) : base(context)
 {
 }
Example #5
0
 public MenuService(YunZhiDbContext context, IRoleService roleService) : base(context)
 {
     _roleService = roleService;
 }
 public OperationGroupService(YunZhiDbContext context) : base(context)
 {
 }