blob: f9f8e38480c8565178f1a2d4b6b8313224e8c94a [file] [log] [blame]
using Nexus.Core;
using Nexus.Core.Validators;
namespace PhoneBook.Core
{
/// <summary>
/// Implement Nexus.Core.Validators.EntryListProcess for AppEntryList.
/// </summary>
///
public class AppEntryListProcessor : EntryListProcessor
{
public override IEntryList NewEntryList()
{
return new AppEntryList();
}
}
}