Ejemplo n.º 1
0
 /// <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;
 }
Ejemplo n.º 2
0
 /// <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)
 {
 }
Ejemplo n.º 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)
 {
 }
Ejemplo n.º 4
0
 /// <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)
 {
 }
Ejemplo n.º 5
0
 public AuctionSettingsBuilder(IAuctionServiceContext serviceContext)
 {
     this.ServiceContext = serviceContext;
 }
Ejemplo n.º 6
0
 /// <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;
 }
Ejemplo n.º 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)
 {
 }