wsp-10027

Organization Users - Add "Member Of" Tab to allow management
of Distribution Group Management Allow management
and Display of Distribution Group Management.
Tab "Member Of" added not only to the "Organization Users" but also
to "Exchange Mailboxes" and "Exchange Distribution Lists".
This commit is contained in:
dev_amdtel 2013-07-22 17:31:52 +04:00
parent 9a566507ea
commit f4c5e0a7ea
27 changed files with 1680 additions and 110 deletions

View file

@ -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