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

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