/// <summary> /// Initializes a new instance of the <see cref="Buddys"/> class. /// </summary> /// <param name="serviceLocator"> /// The service locator. /// </param> /// <param name="dbBroker"> /// The DB broker. /// </param> public Buddys([NotNull] IServiceLocator serviceLocator, [NotNull] DataBroker dbBroker) { this.ServiceLocator = serviceLocator; this.dbBroker = dbBroker; }
/// <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] DataBroker dbBroker) { this.SessionStateBase = sessionStateBase; this._dbBroker = dbBroker; }