Exemplo n.º 1
0
    public void FillUserList()
    {
        var client = new ACLServiceClient();

        using (var ds = client.GetUsersList(0, 0, "FMSGlobalization", ""))
        {
            if (ds != null)
            {
                try
                {
                    _helper.FillDropDownHelperMethodWithDataSet(ds, "Login_Name", "PK_USER_ID", ddlUserList);
                }
                catch (Exception ex)
                {
                    _helper.ErrorsEntry(ex);
                }
            }
        }

        ddlUserList.Items.Remove("FMSAdminUser");
    }