public AuthController(IAuthRepository AuthRepository, PriceredactedDBContext context)
 {
     _AuthRepository = AuthRepository;
     _context        = context;
 }
Exemple #2
0
 public AuthRepository(PriceredactedDBContext context)
 {
     _context = context;
 }
Exemple #3
0
 public ProductsController(PriceredactedDBContext context)
 {
     _context = context;
 }
 public ScanPageController(IScanPageLogic scanPageLogic, PriceredactedDBContext context)
 {
     _scanPageLogic = scanPageLogic;
     _context       = context;
 }
 public SearchController(PriceredactedDBContext context)
 {
     _context = context;
 }