From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。

---
 HotelPms.SourceFactory/FormTableAccessCreator.cs |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/HotelPms.SourceFactory/FormTableAccessCreator.cs b/HotelPms.SourceFactory/FormTableAccessCreator.cs
new file mode 100644
index 0000000..d2a3061
--- /dev/null
+++ b/HotelPms.SourceFactory/FormTableAccessCreator.cs
@@ -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 HotelPms.SourceFactory
+{
+    public partial class FormTableAccessCreator : Form
+    {
+        public FormTableAccessCreator()
+        {
+            InitializeComponent();
+        }
+
+        private void button1_Click(object sender, EventArgs e)
+        {
+            using (BeanCreator form = new BeanCreator())
+            {
+                form.ShowDialog();
+            }
+        }
+    }
+}

--
Gitblit v1.10.0