From 022bd1b9f4303163136cbce350066ba6e74df22b Mon Sep 17 00:00:00 2001 From: Spudnut2000 Date: Thu, 19 Jun 2025 22:34:56 -0500 Subject: [PATCH] begin add/updade appointments form --- .../AddOrUpdateAppointmentForm.Designer.cs | 41 +++++++++++++++++++ C969Project/AddOrUpdateAppointmentForm.cs | 21 ++++++++++ C969Project/C969Project.csproj | 3 ++ 3 files changed, 65 insertions(+) create mode 100644 C969Project/AddOrUpdateAppointmentForm.Designer.cs create mode 100644 C969Project/AddOrUpdateAppointmentForm.cs diff --git a/C969Project/AddOrUpdateAppointmentForm.Designer.cs b/C969Project/AddOrUpdateAppointmentForm.Designer.cs new file mode 100644 index 0000000..f2f39b2 --- /dev/null +++ b/C969Project/AddOrUpdateAppointmentForm.Designer.cs @@ -0,0 +1,41 @@ +using System.ComponentModel; + +namespace C969Project; + +partial class AddOrUpdateAppointmentForm +{ + /// + /// Required designer variable. + /// + private IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "AddOrUpdateAppointmentForm"; + } + + #endregion +} \ No newline at end of file diff --git a/C969Project/AddOrUpdateAppointmentForm.cs b/C969Project/AddOrUpdateAppointmentForm.cs new file mode 100644 index 0000000..03d2f77 --- /dev/null +++ b/C969Project/AddOrUpdateAppointmentForm.cs @@ -0,0 +1,21 @@ +using C969Project.Data.Models; + +namespace C969Project; + +public partial class AddOrUpdateAppointmentForm : Form +{ + public AddOrUpdateAppointmentForm() + { + InitializeComponent(); + } + + public void InitAdd() + { + + } + + public void InitUpdate(Appointment appointment) + { + + } +} \ No newline at end of file diff --git a/C969Project/C969Project.csproj b/C969Project/C969Project.csproj index 1659046..5a2850a 100644 --- a/C969Project/C969Project.csproj +++ b/C969Project/C969Project.csproj @@ -26,6 +26,9 @@ Form + + Form +