コード例 #1
0
 public EntityTienda Delete(EntityTienda oEntityTienda, CTransaction oCTransaction)
 {
     try
     {
         DataTiendaRepository data = new DataTiendaRepository(oEntityTienda, "tienda");
         return(data.Delete(oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #2
0
 public IList <EntityTienda> Select(EntityTienda oEntityTienda, CTransaction oCTransaction)
 {
     try
     {
         DataTiendaRepository data = new DataTiendaRepository(oEntityTienda, "tienda");
         return(data.Select(oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #3
0
 public IList <EntityTiendaPaginacion> SelectPagging(ref EntityTiendaPaginacion oEntityTiendaPaginacion)
 {
     try
     {
         DataTiendaRepository data = new DataTiendaRepository(EntityTiendaPaginacion.Empty, "tienda");
         return(data.SelectPagging(ref oEntityTiendaPaginacion));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #4
0
 public EntityTienda SelectByKey(KeyTienda okey, CTransaction oCTransaction)
 {
     try
     {
         DataTiendaRepository data = new DataTiendaRepository(EntityTienda.Empty, "tienda");
         return(data.SelectByKey(okey, oCTransaction));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }