Merge Commit
This commit is contained in:
commit
7e99c8ac25
31 changed files with 1864 additions and 135 deletions
|
@ -48,7 +48,8 @@
|
|||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Microsoft.Web.Services3">
|
||||
<HintPath>..\..\Bin\Microsoft.Web.Services3.dll</HintPath>
|
||||
<HintPath>..\..\Lib\Microsoft.Web.Services3.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
|
|
|
@ -470,6 +470,25 @@ namespace WebsitePanel.EnterpriseServer
|
|||
return ExchangeServerController.GetDistributionListPermissions(itemId, accountId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public ExchangeAccount[] GetDistributionListsByMember(int itemId, int accountId)
|
||||
{
|
||||
return ExchangeServerController.GetDistributionListsByMember(itemId, accountId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public int AddDistributionListMember(int itemId, string distributionListName, int memberId)
|
||||
{
|
||||
return ExchangeServerController.AddDistributionListMember(itemId, distributionListName, memberId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public int DeleteDistributionListMember(int itemId, string distributionListName, int memberId)
|
||||
{
|
||||
return ExchangeServerController.DeleteDistributionListMember(itemId, distributionListName, memberId);
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region MobileDevice
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue