a099d68915
Initial Release; Includes Database and MVC refactoring
20 lines
445 B
C#
20 lines
445 B
C#
using Disco.Models.Interop.ActiveDirectory;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.BI.Interop.ActiveDirectory
|
|
{
|
|
public static class ActiveDirectoryGroupExtensions
|
|
{
|
|
|
|
public static IEnumerable<Tuple<string, string>> GetMembers(ActiveDirectoryGroup group)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
}
|
|
}
|