forked from 16it/MasterChief
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppConfigService.cs
49 lines (45 loc) · 1.59 KB
/
AppConfigService.cs
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
46
47
48
49
using System;
using MasterChief.DotNet.Core.Config;
using MasterChief.DotNet.ProjectTemplate.WebApi.Model;
using MasterChief.DotNet4.Utilities.Operator;
using MasterChief.DotNet4.Utilities.Result;
namespace MasterChief.DotNet.ProjectTemplate.WebApi
{
/// <summary>
/// 默认请求通道配置信息
/// </summary>
public sealed class AppConfigService : IAppConfigService
{
private readonly ConfigContext _configContext;
/// <summary>
/// 构造函数
/// </summary>
/// <param name="configContext">ConfigContext</param>
public AppConfigService(ConfigContext configContext)
{
ValidateOperator.Begin().NotNull(configContext, "ConfigContext");
_configContext = configContext;
}
/// <summary>
/// 根据appId获取请求通道配置信息
/// </summary>
/// <param name="appid">appId</param>
/// <returns>AppConfig</returns>
public CheckResult<AppConfig> Get(Guid appid)
{
var appConfig = _configContext.Get<AppConfig>(appid.ToString());
return appConfig != null
? CheckResult<AppConfig>.Success(appConfig)
: CheckResult<AppConfig>.Fail($"{appid}配置参数缺失.");
}
/// <summary>
/// 保存配置
/// </summary>
/// <param name="appConfig">AppConfig</param>
public void Save(AppConfig appConfig)
{
ValidateOperator.Begin().NotNull(appConfig, "AppConfig");
_configContext.Save(appConfig);
}
}
}