public void InsertNouns(List<Noun> nouns) { nouns.ForEach(x => _nouns.Create(x)); _uow.Commit(); }
public void InsertAdjectives(List<Adjective> adjectives) { adjectives.ForEach(x => _adjectives.Create(x)); _uow.Commit(); }