Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AuthenticationStore"/> class.
 /// </summary>
 /// <param name="authenticationServiceAgent"></param>
 /// <param name="loggingServiceAgent"></param>
 /// <param name="configuration"></param>
 public AuthenticationStore(
     IAuthenticationServiceAgent authenticationServiceAgent,
     ILoggingServiceAgent loggingServiceAgent,
     IEmConfiguration configuration)
     : base(loggingServiceAgent)
 {
     this.authenticationServiceAgent = authenticationServiceAgent;
     this.configuration = configuration;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Store"/> class.
 /// </summary>
 /// <param name="loggingServiceAgent"></param>
 public Store(ILoggingServiceAgent loggingServiceAgent)
 {
     this.loggingServiceAgent = loggingServiceAgent;
 }