Policies extended with plan templates for Exchange and Lync
Automated provisioning of plans added when template plans are defined Lync plan maintenance added Ability to disable editing of lync plans within hosting plans People picker adjusted for public folders, contact, and distribution liost
This commit is contained in:
parent
76f6ea43cf
commit
008fc296d5
30 changed files with 2357 additions and 118 deletions
|
@ -3192,6 +3192,18 @@ namespace WebsitePanel.EnterpriseServer
|
|||
"GetLyncUsers", sqlParams);
|
||||
}
|
||||
|
||||
|
||||
public static IDataReader GetLyncUsersByPlanId(int itemId, int planId)
|
||||
{
|
||||
return SqlHelper.ExecuteReader(
|
||||
ConnectionString,
|
||||
CommandType.StoredProcedure,
|
||||
"GetLyncUsersByPlanId",
|
||||
new SqlParameter("@ItemID", itemId),
|
||||
new SqlParameter("@PlanId", planId)
|
||||
);
|
||||
}
|
||||
|
||||
public static int GetLyncUsersCount(int itemId)
|
||||
{
|
||||
SqlParameter[] sqlParams = new SqlParameter[]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue