Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AbstractPriorityQ"/> class. 
 /// Constructor for the factory
 /// </summary>
 /// <param name="theFactory">
 /// The factory.
 /// </param>
 protected AbstractPriorityQ(IPriorityQContextFactory theFactory)
 {
     this.Factory = theFactory;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EFPriorityQ"/> class.
 /// </summary>
 /// <param name="theFactory">
 /// The the Factory.
 /// </param>
 public EFPriorityQ(IPriorityQContextFactory theFactory)
     : base(theFactory)
 {
 }