public DutchRepository(
     DutchContext context,
     ILogger <DutchRepository> logger)
 {
     this.context = context;
     this.logger  = logger;
 }
Beispiel #2
0
 public DutchSeeder(DutchContext ctx, IHostingEnvironment hosting,
                    UserManager <StoreUser> userManager)
 {
     _ctx         = ctx;
     _hosting     = hosting;
     _userManager = userManager;
 }
Beispiel #3
0
 public DutchSeeder(DutchContext ctx, IHostingEnvironment hosting, UserManager <StoreUser>
                    userManager)
 {
     this.ctx         = ctx;
     this.hosting     = hosting;
     this.userManager = userManager;
 }
Beispiel #4
0
 public DutchSeeder(DutchContext context, IHostingEnvironment host, ILogger <DutchSeeder> logger, UserManager <StoreUser> userManager)
 {
     _context     = context;
     _host        = host;
     _logger      = logger;
     _userManager = userManager;
 }
Beispiel #5
0
        //private readonly IHostingEnvironment hosting;

        public DutchSeeder(DutchContext ctx, IWebHostEnvironment webHost, UserManager <StoreUser> userManager)
        {
            this.ctx         = ctx;
            this.webHost     = webHost;
            this.userManager = userManager;
            // this.hosting = hosting;
        }
Beispiel #6
0
 public DutchSeeder(DutchContext context, IHostingEnvironment hosting,
                    UserManager <StoreUsers> userManager)
 {
     this._context     = context;
     this._hosting     = hosting;
     this._userManager = userManager;
 }
Beispiel #7
0
 public DutchSeeder(DutchContext context,
                    IWebHostEnvironment hosting, UserManager <StoreUser> userManager)
 {
     this.context     = context;
     this.hosting     = hosting;
     this.userManager = userManager;
 }
 public DutchRepository(
     DutchContext context,
     ILogger <DutchRepository> logger)
 {
     _context = context;
     _logger  = logger;
 }
Beispiel #9
0
 public DutchSeeder(DutchContext ctx,
                    IWebHostEnvironment hosting,
                    UserManager <StoreUser> userManager)
 {
     this._ctx         = ctx;
     this._hosting     = hosting;
     this._userManager = userManager;
 }
Beispiel #10
0
 public DutchSeeder(DutchContext ctx,
                    IHostingEnvironment hosting,
                    RoleManager <IdentityRole> roleManager,
                    UserManager <User> userManager)
 {
     _ctx         = ctx;
     _hosting     = hosting;
     _roleManager = roleManager;
     _userManager = userManager;
 }
Beispiel #11
0
 public DutchSeeder(
     DutchContext context,
     IHostingEnvironment hosting,
     IConfiguration configuration,
     UserManager <StoredUser> userManager)
 {
     _context       = context;
     _hosting       = hosting;
     _configuration = configuration;
     _userManager   = userManager;
 }
Beispiel #12
0
 public DutchSeeder(IHostingEnvironment hosting,
                    UserManager <StoreUser> userManager,
                    DutchContext ctx,
                    IUnitOfWork uow,
                    IRepository <Product> productsRepository,
                    IRepository <Order> ordersRepository)
 {
     _hosting           = hosting;
     _userManager       = userManager;
     _ctx               = ctx;
     _uow               = uow;
     _productRepository = productsRepository;
     _orderRepository   = ordersRepository;
 }
 public DutchSeeder(DutchContext context, IWebHostEnvironment hosting)
 {
     Context = context;
     Hosting = hosting;
 }
Beispiel #14
0
 public DutchSeeder(DutchContext dutchContext, IHostingEnvironment hostingEnvironment)
 {
     _dutchContext       = dutchContext;
     _hostingEnvironment = hostingEnvironment;
 }
 public DutchRepository(DutchContext ctx, ILogger <DutchRepository> logger)
 {
     _ctx    = ctx;
     _logger = logger;
 }
Beispiel #16
0
 public DutchSeeder(DutchContext dbcontext, IWebHostEnvironment hostingEnvoirnment, UserManager <StoreUser> storeUser)
 {
     this.dbcontext          = dbcontext;
     this.hostingEnvoirnment = hostingEnvoirnment;
     this.storeUser          = storeUser;
 }
Beispiel #17
0
 public DutchRepository(DutchContext ctx, ILogger <DutchRepository> logger)
 {
     this.ctx    = ctx;
     this.logger = logger;
 }
Beispiel #18
0
 public DutchSeeder(DutchContext ctx, IWebHostEnvironment hosting)
 {
     _context = ctx;
     _hosting = hosting;
 }
Beispiel #19
0
 public DutchSeeder(DutchContext context, IHostEnvironment env, UserManager <StoreUser> userManager)
 {
     _context     = context;
     _env         = env;
     _userManager = userManager;
 }
Beispiel #20
0
 public DutchSeeder(DutchContext ctx, IHostingEnvironment hosting)
 {
     _ctx     = ctx;
     _hosting = hosting;
 }
Beispiel #21
0
 public PlayerRepository(DutchContext ctx)
 {
     _ctx = ctx;
 }
Beispiel #22
0
 public DutchRepository(DutchContext ctx)
 {
     this.ctx = ctx;
 }
 public DutchRepository(DutchContext ctx)
 {
     _ctx = ctx;
 }
Beispiel #24
0
 public DutchSeeder(DutchContext ctx, IWebHostEnvironment env)
 {
     _ctx = ctx;
     _env = env;
 }
Beispiel #25
0
 public ProductRepository(DutchContext ctx)
 {
     _ctx = ctx;
 }
Beispiel #26
0
 public DutchSeeder(DutchContext ctx, IWebHostEnvironment env, UserManager <StoreUser> userManager)
 {
     this.ctx         = ctx;
     this.env         = env;
     this.userManager = userManager;
 }
Beispiel #27
0
 public DutchRepository(DutchContext context)
 {
     _context = context;
 }
Beispiel #28
0
 public DutchSeeder(DutchContext context, IHostingEnvironment hostingEnvironment)
 {
     this.context            = context;
     this.hostingEnvironment = hostingEnvironment;
 }
Beispiel #29
0
 public DutchRepository(DutchContext dutchContext, ILogger <DutchRepository> logger)
 {
     _ctx    = dutchContext;
     _logger = logger;
 }
Beispiel #30
0
 public DutchSeeder(DutchContext ctx, IWebHostEnvironment env, UserManager <StoreUser> userManager)
 {
     _ctx         = ctx;
     _env         = env;
     _userManager = userManager;
 }