Ejemplo n.º 1
0
 public AccountController(
     SignInManager <IdentityUser> signInManager,
     UserManager <IdentityUser> userManager,
     RoleManager <IdentityRole> roleManager,
     FavoDeMelDbContext context,
     IOptions <AppSettings> appSettings)
 {
     _userManager   = userManager;
     _roleManager   = roleManager;
     _signInManager = signInManager;
     _appSettings   = appSettings.Value;
 }
Ejemplo n.º 2
0
 public ComandaTest()
 {
     context           = new FavoDeMelDbContext(dbContextOptions);
     comandaRepository = new ComandaRepository(context);
 }
 public PedidoRepository(FavoDeMelDbContext context)
     : base(context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public RepositoryBase(FavoDeMelDbContext context)
 {
     _context = context;
     DbSet    = _context.Set <TEntity>();
 }
Ejemplo n.º 5
0
 public ComandaRepository(FavoDeMelDbContext context)
     : base(context)
 {
 }
 public PedidoTest()
 {
     context           = new FavoDeMelDbContext(dbContextOptions);
     pedidoRepository  = new PedidoRepository(context);
     comandaRepository = new ComandaRepository(context);
 }