public AuctionsController()
 {
     _context = new CoinAuctionContext();
 }
 public CoinsMaturityExecution()
 {
     _context = new CoinAuctionContext();
 }
Exemple #3
0
 public AuctionExecution()
 {
     _context = new CoinAuctionContext();
 }
 public DashboardController()
 {
     _context = new CoinAuctionContext();
 }
 public HomeController(ILogger <HomeController> logger, IScheduler scheduler)
 {
     _logger    = logger;
     _context   = new CoinAuctionContext();
     _scheduler = scheduler;
 }