Example #1
0
 public IList <EntityDetallePedidoPaginacion> SelectPagging(ref EntityDetallePedidoPaginacion oEntityDetallePedidoPaginacion)
 {
     try
     {
         DataDetallePedidoRepository data = new DataDetallePedidoRepository(EntityDetallePedidoPaginacion.Empty, "detalle_pedido");
         return(data.SelectPagging(ref oEntityDetallePedidoPaginacion));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public EntityDetallePedido Delete(EntityDetallePedido oEntityDetallePedido, CTransaction oCTransaction)
 {
     try
     {
         DataDetallePedidoRepository data = new DataDetallePedidoRepository(oEntityDetallePedido, "detalle_pedido");
         return(data.Delete(oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #3
0
 public EntityDetallePedido SelectByKey(KeyDetallePedido okey, CTransaction oCTransaction)
 {
     try
     {
         DataDetallePedidoRepository data = new DataDetallePedidoRepository(EntityDetallePedido.Empty, "detalle_pedido");
         return(data.SelectByKey(okey, oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }