public AuctionController(IAuctionService <int> ias, IUserService ius, IBidService ibs, ICategoryAccessor ics)
        {
            auctionService     = ias;
            userService        = ius;
            bidService         = ibs;
            categoriesAccessor = ics;

            Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
        }
 public HomeController(IAuctionService <int> ias, ICategoryAccessor ica)
 {
     auctionService   = ias;
     categoryAccessor = ica;
 }
Exemplo n.º 3
0
 public CategoryEngine(ICategoryAccessor categoryAccessor, IMapper mapper)
 {
     this._categoryAccessor = categoryAccessor;
     this._mapper           = mapper;
 }