Esempio n. 1
0
        public List<Home> LstPedidosBux(string pnro_pedido, string fechainicio, string fechafin)
        {
            Home b_PedidoBux = new Home();
            List<Home> b_usuario = new List<Home>();
            DataTable dt = new DataTable();
            dt = ObjDatos.LstPedidosBUX(pnro_pedido,fechainicio,fechafin);
            try
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    b_PedidoBux = new Home();
                    b_PedidoBux.Empresa = dt.Rows[i]["Empresa"].ToString();
                    b_PedidoBux.CP = dt.Rows[i]["CP"].ToString();
                    b_PedidoBux.FCH_DOC = dt.Rows[i]["FCH_DOC"].ToString();
                    b_PedidoBux.Cliente = dt.Rows[i]["Cliente"].ToString();
                    b_PedidoBux.UUNN = dt.Rows[i]["UUNN"].ToString();
                    b_PedidoBux.Monto = dt.Rows[i]["Monto"].ToString();
                    b_PedidoBux.MARGEN = dt.Rows[i]["MARGEN"].ToString();
                    b_PedidoBux.ImporteMargen = dt.Rows[i]["ImporteMargen"].ToString();
                    b_PedidoBux.TEAM = dt.Rows[i]["TEAM"].ToString();
                    b_PedidoBux.TP = dt.Rows[i]["TP"].ToString();
                    b_PedidoBux.TC_D = dt.Rows[i]["TC_D"].ToString();
                    b_PedidoBux.TipoMoneda = dt.Rows[i]["TipoMoneda"].ToString();
                    b_PedidoBux.EstadoCP = dt.Rows[i]["EstadoCP"].ToString();

                    b_usuario.Add(b_PedidoBux);
                }
            }
            catch (Exception ex)
            {
                vStrError = ex.Message;
            }
            return b_usuario;
        }
Esempio n. 2
0
 public List<Home> LstVendedores()
 {
     Home b_Vendedores = new Home();
     List<Home> b_usuario = new List<Home>();
     DataTable dt = new DataTable();
     dt = ObjDatos.LstVendedores();
     try
     {
         for (int i = 0; i < dt.Rows.Count; i++)
         {
             b_Vendedores = new Home();
             b_Vendedores.COD_VENDEDOR = dt.Rows[i]["COD_VENDEDOR"].ToString();
             b_Vendedores.DSC_50 = dt.Rows[i]["DSC_50"].ToString();
             b_usuario.Add(b_Vendedores);
         }
     }
     catch (Exception ex)
     {
         vStrError = ex.Message;
     }
     return b_usuario;
 }