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