Example #1
0
 public DutchSeeder(DutchContext ctx, IHostingEnvironment hosting, UserManager <StoreUser> userManager)
 {
     _ctx         = ctx;
     _hosting     = hosting;
     _userManager = userManager;
 }
Example #2
0
 public DutchRepository(DutchContext context, ILogger <DutchRepository> logger)
 {
     this.context = context;
     this.logger  = logger;
 }
 public DutchRepository(DutchContext context, ILogger <DutchRepository> logger)
 {
     _context = context;
     _logger  = logger;
 }
Example #4
0
 public DutchSeeder(DutchContext context, IWebHostEnvironment webHostEnvironment, UserManager <StoreUser> userManager)
 {
     this.context            = context;
     this.webHostEnvironment = webHostEnvironment;
     this.userManager        = userManager;
 }
 public DutchSeeder(DutchContext ctx, IHostingEnvironment hosting)
 {
     _ctx     = ctx;
     _hosting = hosting;
 }
Example #6
0
 public DutchRepository(DutchContext ctx, ILogger <DutchRepository> logger)
 {
     this.ctx    = ctx;
     this.logger = logger;
 }