Esempio n. 1
0
        public MoneyExchangeIsLogin()
        {
            var optionsBuilder = new DbContextOptionsBuilder <MvcExchangeContext>();
            var context        = new MvcExchangeContext(optionsBuilder.Options);

            _context = context;
        }
Esempio n. 2
0
 public CurrencyController(MvcExchangeContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public UserController(MvcExchangeContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public LoginController(MvcExchangeContext context)
 {
     _context = context;
 }