Exemplo n.º 1
0
        public List <pr_FCCxCEstadoPago> DATOS_SelectAll()
        {
            try
            {
                List <pr_FCCxCEstadoPago> res = bd.pr_FCCxCEstadoPago_SeleccionarTodos(new ObjectParameter("iCodError", "0")).ToList();
                return(res);
            }

            catch (Exception ex)
            {
                var msgError = ex.Message;
            }
            return(null);
        }
Exemplo n.º 2
0
        public List <FCCxCEstadoPago> DATOS_SelectAll()
        {
            try
            {
                var resTemp1 = bd.pr_FCCxCEstadoPago_SeleccionarTodos(new ObjectParameter("iCodError", "0")).ToList();
                List <FCCxCEstadoPago> res = new List <FCCxCEstadoPago>();
                foreach (var r in resTemp1)
                {
                    FCCxCEstadoPago n = new FCCxCEstadoPago()
                    {
                    };
                    res.Add(n);
                }
                return(res);
            }

            catch (Exception ex)
            {
                var msgError = ex.Message;
            }
            return(null);
        }