Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UserIgnored"/> class.
 /// </summary>
 /// <param name="sessionStateBase">
 /// The session state base.
 /// </param>
 /// <param name="dbBroker">
 /// The db broker.
 /// </param>
 public UserIgnored([NotNull] HttpSessionStateBase sessionStateBase, [NotNull] YafDbBroker dbBroker)
 {
     this.SessionStateBase = sessionStateBase;
     this._dbBroker        = dbBroker;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="YafUserIgnored"/> class.
 /// </summary>
 /// <param name="sessionStateBase">
 /// The session state base.
 /// </param>
 /// <param name="dbBroker">
 /// The db broker.
 /// </param>
 public YafUserIgnored([NotNull] HttpSessionStateBase sessionStateBase, [NotNull] YafDbBroker dbBroker)
 {
   this.SessionStateBase = sessionStateBase;
   this._dbBroker = dbBroker;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="YafBuddy"/> class.
 /// </summary>
 /// <param name="serviceLocator">
 /// The service locator.
 /// </param>
 /// <param name="dbBroker">
 /// The DB broker.
 /// </param>
 public YafBuddy([NotNull] IServiceLocator serviceLocator, [NotNull] YafDbBroker dbBroker)
 {
     this.ServiceLocator = serviceLocator;
     this.dbBroker       = dbBroker;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="YafBuddy"/> class.
 /// </summary>
 /// <param name="serviceLocator">
 /// The service locator.
 /// </param>
 /// <param name="dbBroker">
 /// The DB broker.
 /// </param>
 public YafBuddy([NotNull] IServiceLocator serviceLocator, [NotNull] YafDbBroker dbBroker)
 {
     this.ServiceLocator = serviceLocator;
     this._dbBroker = dbBroker;
 }