crud de productos completado

This commit is contained in:
carlos
2024-06-19 20:51:46 -06:00
parent 3c34b7fd78
commit 3671014cdc
24 changed files with 425 additions and 24 deletions
+28
View File
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace compabetov2.admin
{
public partial class Variantes : Form
{
private crud ventanaPadre;
public Variantes(crud ventanaPadre)
{
this.ventanaPadre = ventanaPadre;
InitializeComponent();
}
private void Variantes_Load(object sender, EventArgs e)
{
}
}
}