コード例 #1
0
 public static Precio_por_cliente getPrecio_por_cliente(int id)
 {
     try
     {
         Query query = new Query("select", "precio_por_cliente");
         query.AddWhere("ID", id.ToString());
         query.AddSelect("*");
         Precio_por_cliente objeto  = new Precio_por_cliente();
         DataSet            dataset = FachadaPrecio_por_cliente.getListado(query);
         int contador = 0;
         if (dataset != null)
         {
             foreach (DataRow fila in dataset.Tables[0].Rows)
             {
                 objeto = new Precio_por_cliente(fila);
                 contador++;
             }
         }
         return(objeto);
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
         return(null);
     }
 }
コード例 #2
0
 public static Precio_por_cliente[] getListadoPorWhere(string where)
 {
     try
     {
         string[] arrString = where.Split('=');
         Query    query     = new Query("select", "precio_por_cliente");
         query.AddWhere(arrString[0], arrString[1]);
         query.AddSelect("*");
         DataSet dataset = FachadaPrecio_por_cliente.getListado(query);
         Precio_por_cliente[] arrprecio_por_cliente = new Precio_por_cliente[dataset.Tables[0].Rows.Count];
         int contador = 0;
         if (dataset != null)
         {
             foreach (DataRow fila in dataset.Tables[0].Rows)
             {
                 Precio_por_cliente objeto = new Precio_por_cliente(fila);
                 arrprecio_por_cliente[contador] = objeto;
                 contador++;
             }
         }
         return(arrprecio_por_cliente);
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
         return(null);
     }
 }
コード例 #3
0
 public static Precio_por_cliente[] getListado(Query query)
 {
     try
     {
         query.AddWhereExacto(ST_Precio_por_cliente.estado_vigente, "vigente");
         DataSet dataset = FachadaPrecio_por_cliente.getListado(query);
         Precio_por_cliente[] arrprecio_por_cliente = new Precio_por_cliente[dataset.Tables[0].Rows.Count];
         int contador = 0;
         if (dataset != null)
         {
             foreach (DataRow fila in dataset.Tables[0].Rows)
             {
                 Precio_por_cliente objeto = new Precio_por_cliente(fila);
                 arrprecio_por_cliente[contador] = objeto;
                 contador++;
             }
         }
         return(arrprecio_por_cliente);
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
         return(null);
     }
 }
コード例 #4
0
 public static void ejecutaSin_retorno(Query query)
 {
     try
     {
         FachadaPrecio_por_cliente.ejecutaSin_retorno(query);
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
     }
 }
コード例 #5
0
 public static void eliminar(Query query)
 {
     try
     {
         FachadaPrecio_por_cliente.eliminar(query);
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
     }
 }
コード例 #6
0
 public static void actualizarJSON(Precio_por_clienteJSON objeto)
 {
     try
     {
         FachadaPrecio_por_cliente.actualizarJSON(objeto);
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
     }
 }
コード例 #7
0
 public static int guardar(Precio_por_cliente objeto)
 {
     try
     {
         return(FachadaPrecio_por_cliente.guardar(objeto));
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
         return(0);
     }
 }
コード例 #8
0
 public static void eliminar(int ID)
 {
     try
     {
         Query query = new Query("delete", "precio_por_cliente");
         query.AddWhere("ID", ID.ToString());
         FachadaPrecio_por_cliente.eliminar(query);
     }
     catch (Exception ex)
     {
         Utils.EscribeLog(ex);
     }
 }