public void LoadArea()
        {
            SQSArea.Clear();
            Area b = new Area();

            b.AreaID   = 0;
            b.AreaName = "All";
            SQSArea.Add(b);

            client = new SQSAdminServiceClient();
            client.Endpoint.Address = new System.ServiceModel.EndpointAddress(CommonVariables.WcfEndpoint);
            DataSet ds = client.SQSAdmin_Generic_GetAllAreas();

            client.Close();
            foreach (DataRow dr in ds.Tables[0].Rows)
            {
                b          = new Area();
                b.AreaID   = int.Parse(dr["areaid"].ToString());
                b.AreaName = dr["areaname"].ToString();
                SQSArea.Add(b);
            }
        }