AuthStrategyContext.cs
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// ***********************************************************************
// <summary>
// 授权策略上下文,一个典型的策略模式
// 根据用户账号的不同,采用不同的授权模式,以后可以扩展更多的授权方式
// </summary>
// ***********************************************************************
using System.Collections.Generic;
using WebRepository;
namespace WebApp
{
/// <summary>
/// 授权策略上下文,一个典型的策略模式
/// </summary>
public class AuthStrategyContext
{
private readonly IAuthStrategy _strategy;
public AuthStrategyContext(IAuthStrategy strategy)
{
this._strategy = strategy;
}
public SysUser User
{
get { return _strategy.User; }
}
public List<SysModuleView> Modules
{
get { return _strategy.Modules; }
}
public List<SysRole> Roles
{
get { return _strategy.Roles; }
}
public List<SysDept> Orgs
{
get { return _strategy.Orgs; }
}
}
}