Example #1
0
 public void ListarJunta()
 {
     //listamos
     SOAPJuntasService.JuntaServiceClient objjuntaservice = new SOAPJuntasService.JuntaServiceClient();
     List<SOAPJuntasService.ListaJuntas> ObjListaJuntas = new List<SOAPJuntasService.ListaJuntas>();
     ObjListaJuntas = objjuntaservice.listarJuntas("2013-01-01", "2014-12-31");
     //debe traer valores
     Assert.AreNotEqual(0, ObjListaJuntas.Count());
 }