Beispiel #1
0
 public EveStaticDataRepository(EveProfiteerDbEntities context)
 {
     Context = context;
     Context.Configuration.AutoDetectChangesEnabled = false;
     Context.Configuration.LazyLoadingEnabled       = false;
     Context.Configuration.ProxyCreationEnabled     = false;
     Initialize = InitializeAsync();
 }
Beispiel #2
0
 public EveProfiteerRepository(EveProfiteerDbEntities context)
 {
     Context = context;
 }
 public ProductionService(EveProfiteerDbEntities db, EveApiService eveApiService)
 {
     _db            = db;
     _eveApiService = eveApiService;
 }