Example #1
0
 public IList <EntityProvincia> SelectProvincia(EntityProvincia oEntityProvincia)
 {
     try
     {
         return(UbigeoService.SelectProvincia(oEntityProvincia));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public IList <EntityProvincia> SelectProvincia(EntityProvincia oEntityProvincia)
 {
     try
     {
         return(ProvinciaApp.Select(oEntityProvincia));
     }
     catch (Exception)
     {
         throw new FaultException("Error al seleccionar Provincias");
     }
 }
 public IList <EntityProvincia> Select(EntityProvincia oEntityProvincia)
 {
     try
     {
         CTransaction oCTransaction = CTransaction.Empty;
         return(Repo.Select(oEntityProvincia, oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public IList <EntityProvincia> Select(EntityProvincia oEntityProvincia, CTransaction oCTransaction)
 {
     try
     {
         DataProvinciaRepository data = new DataProvinciaRepository(oEntityProvincia, "Provincia");
         return(data.Select(oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public EntityProvincia Delete(EntityProvincia oValue, CTransaction transaction)
 {
     throw new NotImplementedException();
 }
 public EntityProvincia Insert(EntityProvincia oValue, CTransaction oCTransaction)
 {
     throw new NotImplementedException();
 }