Example #1
0
 public HomeController(IUserRepo userRepo, IAuctionRepo auctionRepo, IAuctionLogRepo logRepo)
 {
     _userRepo    = userRepo;
     _auctionRepo = auctionRepo;
     _logRepo     = logRepo;
 }
 public AuctionController()
 {
     _auctionRepo = new AuctionRepo();
     _logRepo     = new AuctionLogsRepo();
 }