Exemplo n.º 1
0
        public AppController(INullMailService mailService, DutchContext ctx, IDutchRepository repository)
        {
            _mailService = mailService;
            _repository  = repository;

            _ctx = ctx;
        }
Exemplo n.º 2
0
 public AppController(IMailService mailService, DutchContext context,
                      IDutchRepository repository)
 {
     _mailService = mailService;
     _context     = context;
     _repository  = repository;
 }
Exemplo n.º 3
0
 public VerbsController(IDutchRepository repository,
                        SignInManager <AppUser> signInManager,
                        UserManager <AppUser> userManager,
                        DutchContext context)
 {
     _repository    = repository;
     _signInManager = signInManager;
     _userManager   = userManager;
     _context       = context;
 }
 public ProductRepository(DutchContext context, ILogger <ProductRepository> logger)
 {
     _context = context;
     _logger  = logger;
 }
Exemplo n.º 5
0
 public SampleDataController(DutchContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 6
0
 public AppController(IMailService mailService, DutchContext context)
 {
     this.mailService = mailService;
     this.context     = context;
 }
Exemplo n.º 7
0
 public ProductRepository(DutchContext dbContext)
 {
     db = dbContext;
 }
Exemplo n.º 8
0
 public OrdersRepository(DutchContext dutchContext,
                         ILogger <OrdersRepository> logger)
 {
     this.DutchContext = dutchContext;
     this.Logger       = logger;
 }
Exemplo n.º 9
0
 public appController(IMailService mailService, DutchContext ctx)
 {
     _mailService = mailService;
     _ctx         = ctx;
 }
Exemplo n.º 10
0
 public AppController(IMailService mailService, IDutchRepository repository, DutchContext dutchContext)
 {
     _mailService  = mailService;
     _repository   = repository;
     _dutchContext = dutchContext;
 }
Exemplo n.º 11
0
 public HomeController(DutchContext context)
 {
     _context = context;
 }
 public OrderRepository(DutchContext context, ILogger <OrderRepository> logger)
 {
     _context = context;
     _logger  = logger;
 }
Exemplo n.º 13
0
 public DutchRepository(DutchContext context, ILogger <DutchContext> logger)
 {
     _context = context;
     _logger  = logger;
 }
Exemplo n.º 14
0
 public UnitOfWork(DutchContext context)
 {
     _context = context;
 }
 public DutchRepository(DutchContext ctx, ILogger <DutchRepository> logger)
 {
     _ctx    = ctx;
     _logger = logger;
     //_logger.LogInformation("into the repo!!!!!!!!!");
 }
Exemplo n.º 16
0
 public ProductsRepository(DutchContext dutchContext, ILogger <ProductsRepository> logger)
 {
     this.localDutchContext = dutchContext;
     Logger = logger;
 }
Exemplo n.º 17
0
 public DutchRepository(DutchContext ctx, ILogger <DutchRepository> logger)
 {
     _ctx    = ctx;
     _logger = logger;
 }
Exemplo n.º 18
0
 public StoreUserRepository(DutchContext dutchContext, ILogger <StoreUserRepository> logger)
 {
     this.DutchContext = dutchContext;
     this.Logger       = logger;
 }
Exemplo n.º 19
0
 public DutchSeeder(DutchContext dutchContext, IHostingEnvironment hosting, UserManager <StoreUser> manager)
 {
     this.DutchContext = dutchContext;
     this.Hosting      = hosting;
     Manager           = manager;
 }
Exemplo n.º 20
0
 public HomeController(DutchContext context) // Connects to database
 {
     _context = context;
 }
 public AppController(IMailService mailService, DutchContext context)
 {
     _mailService = mailService;
     _context     = context;
 }
Exemplo n.º 22
0
 public DutchSeeder(DutchContext ctx)
 {
     _ctx = ctx;
 }