Beispiel #1
0
        public ProductosController(ApplicationDbContext context, NewTiendaService app)
        {
            _context = context;

            _app = app;
        }
Beispiel #2
0
 public VendedoresController(ApplicationDbContext context, IHttpContextAccessor httpContextAccessor, NewTiendaService app)
 {
     _httpContextAccessor = httpContextAccessor;
     _context             = context;
     _app = app;
 }
Beispiel #3
0
 public HomeController(ILogger <HomeController> logger, NewTiendaService app)
 {
     _logger = logger;
     _app    = app;
 }