public ProductsController(ProductManagerContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public CompanyLogic()
 {
     _context = new ProductManagerContext();
 }
Ejemplo n.º 3
0
 public UserLogic()
 {
     _context = new ProductManagerContext();
 }
Ejemplo n.º 4
0
 public ProfitLogic()
 {
     _context = new ProductManagerContext();
 }
Ejemplo n.º 5
0
 public ElectricLogic()
 {
     _context = new ProductManagerContext();
 }
Ejemplo n.º 6
0
 public ProductsController(ProductManagerContext dbContext, ILogger <ProductsController> logger)
 {
     _dbContext = dbContext;
     _logger    = logger;
 }
Ejemplo n.º 7
0
 public CategoryController(ProductManagerContext dbContext, ILogger <CategoryController> logger)
 {
     _dbContext = dbContext;
     _logger    = logger;
 }
Ejemplo n.º 8
0
 public DataReportLogic()
 {
     _context = new ProductManagerContext();
 }