public List <pr_FCCxCFormaPago> DATOS_SelectAll() { try { List <pr_FCCxCFormaPago> res = bd.pr_FCCxCFormaPago_SeleccionarTodos(new ObjectParameter("iCodError", "0")).ToList(); return(res); } catch (Exception ex) { var msgError = ex.Message; } return(null); }
public List <FCCxCFormaPago> DATOS_SelectAll() { try { var resTemp1 = bd.pr_FCCxCFormaPago_SeleccionarTodos(new ObjectParameter("iCodError", "0")).ToList(); //TODO List <FCCxCFormaPago> res = new List <FCCxCFormaPago>(); foreach (var r in resTemp1) { FCCxCFormaPago n = new FCCxCFormaPago() { }; res.Add(n); } return(res); } catch (Exception ex) { var msgError = ex.Message; } return(null); }