public SqlHolidayPackageDataService(IslandDbContext db)
 {
     this.db = db;
 }
 public SqlHolidayCategoryDataService(IslandDbContext db)
 {
     this.db = db;
 }
Esempio n. 3
0
 public SqlIslandDataService(IslandDbContext db)
 {
     this.db = db;
 }
Esempio n. 4
0
 public SqlElementDataService(IslandDbContext db, ILogger <SqlElementDataService> logger)
 {
     this._db     = db;
     this._logger = logger;
 }
Esempio n. 5
0
 public ElementSeeder(IslandDbContext islandDbContext, IHostingEnvironment hosting, UserManager <StoreUser> userManager)
 {
     _islandDbContext    = islandDbContext;
     _hostingEnvironment = hosting;
     _userManager        = userManager;
 }