コード例 #1
0
 public StoresRepositoryService(GlobalStoreDbContext globalStoreDbContext) : base(globalStoreDbContext)
 {
 }
コード例 #2
0
 /// <summary>
 /// Initializes the constructor.
 /// </summary>
 /// <param name="globalStoreDbContext"></param>
 /// <param name="countriesService"></param>
 public LocationDataSeed(GlobalStoreDbContext globalStoreDbContext, CountriesService countriesService)
 {
     _globalStoreDbContext = globalStoreDbContext;
     _countriesService     = countriesService;
 }
コード例 #3
0
 public LocationsRepositoryService(GlobalStoreDbContext globalStoreDbContext)
 {
     _globalStoreDbContext = globalStoreDbContext;
 }
コード例 #4
0
 /// <summary>
 /// Initializes the service
 /// </summary>
 public GlobalRepository(GlobalStoreDbContext dbContext)
 {
     _dbContext = dbContext;
 }