Midway.ServiceClient.Client.GetDepartmentEmployees C# (CSharp) Method

GetDepartmentEmployees() public method

Возвращает сотрудников заданного подразделения
public GetDepartmentEmployees ( string boxId, string departmentId ) : User[]
boxId string Ящик организации
departmentId string ИД подразделения
return User[]
        public User[] GetDepartmentEmployees(string boxId, string departmentId)
        {
            return CheckAutorizedInvoke(() => client.GetDepartmentEmployees(Token, boxId, departmentId));
        }
Client