public static string add_Vehiculo(Vehiculo d) { return "{" + '"' + "IdVehiculo" + '"' + ": " + d.IdVehiculo.ToString() + ',' + '"' + "Placa" + '"' + ": " + '"' + d.Placa + '"' + ',' + '"' + "Descripcion" + '"' + ": " + '"' + d.Descripcion + '"' + ',' + '"' + "Capacidad" + '"' + ": " + d.Capacidad.ToString() + ',' + '"' + "Marca" + '"' + ": " + d.Marca.ToString() + ',' + '"' + "Modelo" + '"' + ": " + d.Modelo.ToString() + ',' + '"' + "Activo" + '"' + ": " + (d.Activo ? "true" : "false") + ',' + '"' + "FechaCreacion" + '"' + ": " + '"' + Utils.dateToJson(d.FechaCreacion) + '"' + ',' + '"' + "IdTienda" + '"' + ": " + d.IdTienda.ToString() + "}"; }
public ResponseBD add_Vehiculo(Vehiculo v) { try { ResponseBD response = new ResponseBD(); string ConnString = ConfigurationManager.ConnectionStrings["barabaresConnectionString"].ConnectionString; using (SqlConnection SqlConn = new SqlConnection(ConnString)) { try { SqlConn.Open(); } catch (Exception ex) { Debug.WriteLine(ex.ToString()); response.Flujo = Constantes.FALLA; response.Mensaje = "Error al abrir la conexión a BD"; return response; } SqlCommand sqlCmd = new SqlCommand("VEHICULO_INSERT", SqlConn); sqlCmd.CommandType = CommandType.StoredProcedure; SqlParameter flujo = new SqlParameter("@opsFlujo", SqlDbType.VarChar) { Direction = ParameterDirection.Output, Size = 10 }; SqlParameter mensaje = new SqlParameter("@opsMsj", SqlDbType.VarChar) { Direction = ParameterDirection.Output, Size = 100 }; sqlCmd.Parameters.Add("@ipsDescripcion", SqlDbType.VarChar).Value = v.Descripcion; sqlCmd.Parameters.Add("@ipsPlaca", SqlDbType.VarChar).Value = v.Placa; sqlCmd.Parameters.Add("@ipnMarca", SqlDbType.Int).Value = v.Marca; sqlCmd.Parameters.Add("@ipnModelo", SqlDbType.Int).Value = v.Modelo; sqlCmd.Parameters.Add("@ipdFechaCreacion", SqlDbType.DateTime).Value = v.FechaCreacion; sqlCmd.Parameters.Add("@ipbActivo", SqlDbType.Bit).Value = v.Activo; sqlCmd.Parameters.Add("@ipnCapacidad", SqlDbType.Int).Value = v.Capacidad; sqlCmd.Parameters.Add("@ipnIdTienda", SqlDbType.Int).Value = v.IdTienda; sqlCmd.Parameters.Add(flujo); sqlCmd.Parameters.Add(mensaje); sqlCmd.ExecuteNonQuery(); response.Flujo = flujo.Value.ToString(); response.Mensaje = mensaje.Value.ToString(); SqlConn.Close(); } return response; } catch (Exception ex) { LogBarabares b = new LogBarabares() { Accion = Constantes.LOG_CREAR, Servicio = Constantes.Add_Vehiculo, Input = JsonSerializer.add_Vehiculo(v), Descripcion = ex.ToString(), Clase = (v == null) ? "null" : v.GetType().Name, Aplicacion = Constantes.ENTORNO_SERVICIOS, Estado = Constantes.FALLA, Ip = "", IdUsuario = 1 //TODO: obtener usuario de la sesión }; Utils.add_LogBarabares(b); ResponseBD response = new ResponseBD(); response.Flujo = Constantes.FALLA; response.Mensaje = "Error al abrir la conexión a BD"; return response; } }
public List<Vehiculo> selectAll_Vehiculo() { try { List<Vehiculo> vehiculos = new List<Vehiculo>(); Vehiculo v; DataTable dt = new DataTable(); SqlDataAdapter sda = new SqlDataAdapter(); string ConnString = ConfigurationManager.ConnectionStrings["barabaresConnectionString"].ConnectionString; using (SqlConnection SqlConn = new SqlConnection(ConnString)) { try { SqlConn.Open(); } catch (Exception ex) { Debug.WriteLine(ex.ToString()); return vehiculos; } SqlCommand sqlCmd = new SqlCommand("VEHICULO_SELECT_ALL", SqlConn); sqlCmd.CommandType = CommandType.StoredProcedure; sda.SelectCommand = sqlCmd; sda.Fill(dt); SqlConn.Close(); sqlCmd.Dispose(); sda.Dispose(); } DataRow[] rows = dt.Select(); for (int i = 0; i < rows.Length; i++) { v = Utils.vehiculo_parse(rows[i]); vehiculos.Add(v); } return vehiculos; } catch (Exception ex) { Vehiculo v = new Vehiculo(); LogBarabares b = new LogBarabares() { Accion = Constantes.LOG_LISTAR, Servicio = Constantes.SelectAll_Vehiculo, Input = "", Descripcion = ex.ToString(), Clase = v.GetType().Name, Aplicacion = Constantes.ENTORNO_SERVICIOS, Estado = Constantes.FALLA, Ip = "", IdUsuario = 1 //TODO: obtener usuario de la sesión }; Utils.add_LogBarabares(b); return new List<Vehiculo>(); } }
public static Vehiculo vehiculo_parse(DataRow r) { Vehiculo v = new Vehiculo(); v.IdVehiculo = Int32.Parse(r["idVehiculo"].ToString()); v.Descripcion = r["descripcion"].ToString(); v.Placa = r["placa"].ToString(); v.Marca = Int32.Parse(r["marca"].ToString()); v.Modelo = Int32.Parse(r["modelo"].ToString()); v.Capacidad= Int32.Parse(r["capacidad"].ToString()); v.FechaCreacion = DateTime.ParseExact(r["fechaCreacion"].ToString(), "M/d/yyyy h:mm:ss ttt", null); v.UltimaModificacion = DateTime.ParseExact(r["ultimaModificacion"].ToString(), "M/d/yyyy h:mm:ss ttt", null); v.Activo = Boolean.Parse(r["activo"].ToString()); v.IdTienda = Int32.Parse(r["idTienda"].ToString()); return v; }