示例#1
0
        public void Insertar(ALCSA.Entidades.Abonos.AbonoCheque cheque)
        {
            ALCSA.FWK.BD.Servicio objServicio = new ALCSA.FWK.BD.Servicio();
            objServicio.Conexion = Conexion.ALCSA;
            objServicio.Comando  = "dbo.SPALC_ABONOSMCH_INSERTAR";
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@INT_IdCobranza", Valor = cheque.IdCobranza, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
            });
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@INT_IdAbonoComprobante", Valor = cheque.IdAbonoComprobante, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
            });
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@DAT_Fpago", Valor = cheque.Fpago, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
            });
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@VC_Nrocheque", Valor = cheque.Nrocheque, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
            });
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@VC_Serie", Valor = cheque.Serie, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
            });
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@FLT_Montoabono", Valor = cheque.Montoabono, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
            });
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@VC_Username", Valor = cheque.Username, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
            });
            objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
            {
                Nombre = "@INT_IdAbonomchSalida", Valor = 0, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Salida
            });

            objServicio.EjecutarSinRetorno();

            cheque.ID = Convert.ToInt32(objServicio.Parametros[objServicio.Parametros.Count - 1].Valor);
        }
示例#2
0
 public void Actualizar(ALCSA.Entidades.Abonos.AbonoCheque cheque)
 {
     ALCSA.FWK.BD.Servicio objServicio = new ALCSA.FWK.BD.Servicio();
     objServicio.Conexion = Conexion.ALCSA;
     objServicio.Comando  = "";
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@INT_IdAbonomch", Valor = cheque.ID, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@VC_Cuentadeposito", Valor = cheque.Cuentadeposito, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@CHR_Estado", Valor = cheque.Estado, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@DAT_Fechadeposito", Valor = cheque.Fechadeposito, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@DAT_Fechaliberacion", Valor = cheque.Fechaliberacion, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@DAT_Fpago", Valor = cheque.Fpago, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@DAT_Fproceso", Valor = cheque.Fproceso, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@INT_IdAbonoComprobante", Valor = cheque.IdAbonoComprobante, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@INT_IdBanco", Valor = cheque.IdBanco, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@INT_IdCobranza", Valor = cheque.IdCobranza, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@FLT_Montoabono", Valor = cheque.Montoabono, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@VC_Nrocheque", Valor = cheque.Nrocheque, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@VC_Nrocomprobantedeposito", Valor = cheque.Nrocomprobantedeposito, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@VC_RutDeudor", Valor = cheque.RutDeudor, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@VC_Serie", Valor = cheque.Serie, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@VC_Userdeposito", Valor = cheque.Userdeposito, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.Parametros.Add(new ALCSA.FWK.BD.Parametro()
     {
         Nombre = "@VC_Username", Valor = cheque.Username, Direccion = ALCSA.FWK.BD.Enumeradores.Direcciones.Entrada
     });
     objServicio.EjecutarSinRetorno();
 }