Example #1
0
 public void GetRutaActasTest()
 {
     GCRegActasBL target = new GCRegActasBL(); // TODO: Initialize to an appropriate value
     string cod_con = string.Empty; // TODO: Initialize to an appropriate value
     IList<ESTADOS> expected = null; // TODO: Initialize to an appropriate value
     IList<ESTADOS> actual;
     actual = target.GetRutaActas(cod_con);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public static List<CCombo> GetRutaEst(string cod_con)
 {
     List<CCombo> Est=null;
     if (!String.IsNullOrEmpty(cod_con))
     {
         GCRegActasBL gcRa = new GCRegActasBL();
         Est = gcRa.GetRutaActas(cod_con).Select(t => new CCombo() { Codigo = t.COD_EST, Descripcion = t.NOM_EST }).ToList();
     }
     return Est;
 }