Projektstruktur optimiert und Benutzer- & Gruppenverzeichnisdienste abgeschlossen.

This commit is contained in:
Developer 02
2024-03-08 15:00:37 +01:00
parent 846364351e
commit 085a1ffdec
363 changed files with 7785 additions and 8132 deletions

View File

@@ -0,0 +1,9 @@
using System.DirectoryServices;
namespace DigitalData.Core.Contracts.Infrastructure
{
public interface ISearcherProvider<ADDataAccessor>
{
public Func<DirectorySearcher> Provide { get; }
}
}