public void ListarDetalleCmp()
        {
            ServiceCmp.CmpesServiceClient proxy = new ServiceCmp.CmpesServiceClient();
            ServiceCmp.Cmp[] Cmpproducto = proxy.listarCmp();

            int f;
            for (f = 1; f <= Cmpproducto.Length; f++)
            {
                Assert.AreEqual(Cmpproducto[0].IdCmp, 1);
            }
        }