product screen form

This commit is contained in:
2025-05-13 23:17:03 -05:00
parent ba85e6e3c0
commit 62a230cc19
4 changed files with 456 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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 C968Project.Views
{
public partial class AddModifyProductScreen : Form
{
public AddModifyProductScreen()
{
InitializeComponent();
}
}
}