public void ReportHasBeenFetched <T>(T report) where T : StructuralCriteriaPerformance { using (var context = new DataLakeAdWordsContext()) { context.Add(report); context.SaveChanges(); } }
public override void Run() { using (var dbContext = new DataLakeAdWordsContext()) { Method(dbContext); dbContext.SaveChanges(); } }