Exemplo n.º 1
0
        ORDR IBOPOR.FP_GET_OINV_TICKET(string Ticket)
        {
            IQOPOR objOPORD = null;

            try
            {
                objOPORD = new DataOPOR(this._CadenaConeccion);
                return(objOPORD.FP_GET_OINV_TICKET(Ticket));
            }
            catch (Exception ex)
            {
                throw;
            }
            finally
            {
                objOPORD = null;
            }
        }
Exemplo n.º 2
0
        IList <OPOR> IBOPOR.FP_LISTAR_OPOR(string FechaIni, string FechaFin)
        {
            IQOPOR objOPORD = null;

            try
            {
                objOPORD = new DataOPOR(this._CadenaConeccion);
                return(objOPORD.FP_LISTAR_OPOR(FechaIni, FechaFin));
            }
            catch (Exception ex)
            {
                throw;
            }
            finally
            {
                objOPORD = null;
            }
        }