Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NonAuthenticatedSessionBuilder" /> class.
 /// </summary>
 /// <param name="configurationProvider">The configuration provider.</param>
 /// <param name="komfoProvider">The Komfo provider.</param>
 public NonAuthenticatedSessionBuilder(IConfigurationProvider configurationProvider, IKomfoProvider komfoProvider)
 {
     this.ConfigurationProvider = configurationProvider;
     this.KomfoProvider         = komfoProvider;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NonAuthenticatedSession" /> class.
 /// </summary>
 /// <param name="configurationProvider">The configuration provider.</param>
 /// <param name="komfoProvider">The Komfo provider.</param>
 public NonAuthenticatedSession(IConfigurationProvider configurationProvider, IKomfoProvider komfoProvider)
 {
     this.disposed = false;
     this.ConfigurationProvider = configurationProvider;
     this.KomfoProvider         = komfoProvider;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="KomfoSessions" /> class.
 /// </summary>
 /// <param name="configurationProvider">The configuration provider.</param>
 /// <param name="komfoProvider">The Komfo provider.</param>
 public KomfoSessions(IConfigurationProvider configurationProvider, IKomfoProvider komfoProvider)
 {
     this.ConfigurationProvider = configurationProvider;
     this.KomfoProvider         = komfoProvider;
 }