public List <FCCxCBoSPrecio> SelectAll() { try { var resTemo = bd.pr_FCCxCBoSPrecio_SeleccionarTodos(new ObjectParameter("iCodError", "0")); List <FCCxCBoSPrecio> res = new List <FCCxCBoSPrecio>(); foreach (var r in resTemo) { FCCxCBoSPrecio n = new FCCxCBoSPrecio() { IdBoSPrecio = r.IdBoSPrecio, IdBoS = r.IdBoS, MonPrecio = r.MonPrecio, MonCosto = r.MonCosto, NumPeriodo = r.NumPeriodo, FecCreacion = r.FecCreacion, UsrCreacion = r.UsrCreacion, FecUltModif = r.FecUltModif, UsrUltModif = r.UsrUltModif, }; res.Add(n); } return(res); } catch (Exception ex) { var msgError = ex.Message; } return(null); }
public List <pr_FCCxCBoSPrecio> DATOS_SelectAll() { try { List <pr_FCCxCBoSPrecio> res = bd.pr_FCCxCBoSPrecio_SeleccionarTodos(new ObjectParameter("iCodError", "0")).ToList(); return(res); } catch (Exception ex) { var msgError = ex.Message; } return(null); }