Example #1
0
        // Constructor
        public HomeController(ILogger <HomeController> logger, QuoteListContext quoteListContext)
        {
            passThis = 1;

            _logger = logger;
            context = quoteListContext;
        }
Example #2
0
 //Constructor that build instance of QuoteListContext
 public HomeController(QuoteListContext con)
 {
     context = con;
 }