using System.DirectoryServices; namespace DigitalData.Core.Contracts.Infrastructure { public interface IADDataAccessor { SearchResultCollection ReadAll(); SearchResult? ReadOne(); } }