Beispiel #1
0
        //private readonly IItemService itemService;
        //private readonly IItemCategoryService itemCategoryService;
        //private readonly ICategoryService categoryService;

        public AuctionFacade(IUnitOfWorkProvider unitOfWorkProvider, IAuctionService auctionService,
                             IRaiseService raiseService)
            : base(unitOfWorkProvider)
        {
            this.auctionService = auctionService;
            this.raiseService   = raiseService;
        }
Beispiel #2
0
 public ModifyAuctionsFacade(
     IUnitOfWorkProvider provider,
     IAuctionService auctionService,
     IItemService itemService,
     ICategoryService categoryService,
     IItemCategoryService itemCategoryService,
     IUserService userService,
     IRaiseService raiseService)
     : base(provider)
 {
     this.auctionService      = auctionService;
     this.itemService         = itemService;
     this.categoryService     = categoryService;
     this.itemCategoryService = itemCategoryService;
     this.userService         = userService;
     this.raiseService        = raiseService;
 }