using Nexus.Core; using Nexus.Core.Validators; namespace PhoneBook.Core { /// /// Implement Nexus.Core.Validators.EntryListProcess for AppEntryList. /// /// public class AppEntryListProcessor : EntryListProcessor { public override IEntryList NewEntryList() { return new AppEntryList(); } } }