/// <summary>
 /// 构造函数。
 /// </summary>
 public AuthenticationProvider()
 {
     this.config = ModuleConfiguration.ModuleConfig;
     this.log = new LogContainer(this.config);
     this.poxy = new AuthenticationServicePoxy();
     this.poxy.Url = this.config.AuthenticationProviderURL;
 }
Esempio n. 2
0
 /// <summary>
 /// 构造函数。
 /// </summary>
 public OrgFactory()
 {
     this.config = ModuleConfiguration.ModuleConfig;
     this.log = new LogContainer(this.config);
     this.poxy = new OrgFactoryServicePoxy();
     this.poxy.Url = this.config.OrgFactoryServiceURL;
 }