private void SubirFoto() { AccesoDatos.AgregarImagen(new Imagen(txtDescripcion.Text, imagen, user.Id_Usuario)); int img = AccesoDatos.DevolverUltimoInsert(); Categoria top = AccesoDatos.DevolverCategoria("Top"); Categoria bottom = AccesoDatos.DevolverCategoria("Bottom"); Categoria accesories = AccesoDatos.DevolverCategoria("Accesories"); Categoria shoes = AccesoDatos.DevolverCategoria("Shoes"); Prenda p_top = new Prenda(txtNameTop.Text, txtLinkTop.Text, img, top); Prenda p_bottom = new Prenda(txtNameBottom.Text, txtLinkBottom.Text, img, bottom); Prenda p_accesories = new Prenda(txtNameAccesories.Text, txtLinkAccesories.Text, img, accesories); Prenda p_shoes = new Prenda(txtNameShoes.Text, txtLinkShoes.Text, img, shoes); if (txtNameTop.Text != "" && txtLinkTop.Text != "") { AccesoDatos.AgregarPrenda(p_top); } if (txtNameBottom.Text != "" && txtLinkBottom.Text != "") { AccesoDatos.AgregarPrenda(p_bottom); } if (txtNameAccesories.Text != "" && txtLinkAccesories.Text != "") { AccesoDatos.AgregarPrenda(p_accesories); } if (txtNameShoes.Text != "" && txtLinkShoes.Text != "") { AccesoDatos.AgregarPrenda(p_shoes); } }