private void AddLocalisation(PageLocalisation localisation) { if (PageLocalisations.FirstOrDefault(x => x.LanguageId == localisation.LanguageId) == null) { PageLocalisations.Add(localisation); } }
private void AddLocalisation(PageLocalisation localisation) { if (PageLocalisations.FirstOrDefault(x => x.LanguageId == localisation.LanguageId) != null) { throw new Exception("Language already added."); } PageLocalisations.Add(localisation); }