Ejemplo n.º 1
0
 public BidService(IBidRepository bidRepository, IBidMapper bidMapper, IUserService userService, INotificationService productUpdateService,
                   IProductService productService)
 {
     this.bidRepository       = bidRepository;
     this.bidMapper           = bidMapper;
     this.userService         = userService;
     this.notificationService = productUpdateService;
     this.productService      = productService;
 }
Ejemplo n.º 2
0
 public BidRepo(wzvzhuteContext context, IBidMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 3
0
 public ProductMapper(IBidMapper bidMapper, INotificationMapper productUpdateMapper)
 {
     this.bidMapper          = bidMapper;
     this.notificationMapper = productUpdateMapper;
 }