/// <summary>
 /// Initializes a new instance of the <see cref="AuctionServiceFactory"/> class.
 /// </summary>
 /// <param name="serviceContext">The service context.</param>
 public AuctionServiceFactory(IAuctionServiceContext serviceContext)
 {
     this.ServiceContext = serviceContext;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AuctionSettingsManager"/> class.
 /// </summary>
 /// <param name="serviceContext">The service context.</param>
 public AuctionSettingsManager(IAuctionServiceContext serviceContext)
     : base(serviceContext)
 {
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AuctionFactory"/> class.
 /// </summary>
 /// <param name="serviceContext">The service context.</param>
 public AuctionFactory(IAuctionServiceContext serviceContext)
     : base(serviceContext)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BiddingManagerFactory"/> class.
 /// </summary>
 /// <param name="serviceContext">The service context.</param>
 public BiddingManagerFactory(IAuctionServiceContext serviceContext)
     : base(serviceContext)
 {
 }
 public AuctionSettingsBuilder(IAuctionServiceContext serviceContext)
 {
     this.ServiceContext = serviceContext;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BidManager"/> class.
 /// </summary>
 /// <param name="serviceContext">The context.</param>
 public AuctionServiceManager(IAuctionServiceContext serviceContext)
 {
     this.ServiceContext = serviceContext;
 }
Beispiel #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SealedBidManager"/> class.
 /// </summary>
 /// <param name="serviceContext">The context.</param>
 public SealedBidManager(IAuctionServiceContext serviceContext)
     : base(serviceContext)
 {
 }