private static HashSet<string> GetISSNs(UpdateViewModel model) { return ParseISSNs(model.ISSNs); }
public ActionResult Update(UpdateViewModel model) { if (this.ModelState.IsValid) { var journals = this.GetJournalsFromSource(model.Source); var issns = GetISSNs(model); var journalsISSNs = journals.Select(j => j.ISSN).ToSet(StringComparer.InvariantCultureIgnoreCase); var issnsFound = issns.Intersect(journalsISSNs).ToList(); var issnsNotFound = issns.Except(journalsISSNs).ToList(); var journalsToImport = journals.Where(j => issnsFound.Contains(j.ISSN)).ToList(); this.journalsImport.ImportJournals(journalsToImport, JournalsImportMode.UpdateOnly); this.Session[FoundISSNsSessionKey] = issnsFound; this.Session[NotFoundISSNsSessionKey] = issnsNotFound; return this.RedirectToAction("Updated"); } return this.View(model); }