From cd23342189e417f3665593e7fe6d15312f3bfb8a Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Tue, 30 Apr 2024 00:33:53 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=84=D0=BE=D1=80=D0=BC=D1=8B=20=D0=B4=D0=BB=D1=8F=20=D1=81?= =?UTF-8?q?=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8=D1=8F=20=D0=B8=20=D1=80?= =?UTF-8?q?=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D1=81=D1=83=D1=89=D0=BD=D0=BE=D1=81=D1=82?= =?UTF-8?q?=D0=B5=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PolyclinicView/FormCourse.Designer.cs | 39 ++++++ Polyclinic/PolyclinicView/FormCourse.cs | 20 +++ Polyclinic/PolyclinicView/FormCourse.resx | 120 ++++++++++++++++++ .../PolyclinicView/FormDiagnose.Designer.cs | 39 ++++++ Polyclinic/PolyclinicView/FormDiagnose.cs | 20 +++ Polyclinic/PolyclinicView/FormDiagnose.resx | 120 ++++++++++++++++++ .../PolyclinicView/FormMedicament.Designer.cs | 39 ++++++ Polyclinic/PolyclinicView/FormMedicament.cs | 20 +++ Polyclinic/PolyclinicView/FormMedicament.resx | 120 ++++++++++++++++++ .../PolyclinicView/FormProcedure.Designer.cs | 39 ++++++ Polyclinic/PolyclinicView/FormProcedure.cs | 20 +++ Polyclinic/PolyclinicView/FormProcedure.resx | 120 ++++++++++++++++++ .../PolyclinicView/FormRecipe.Designer.cs | 39 ++++++ Polyclinic/PolyclinicView/FormRecipe.cs | 20 +++ Polyclinic/PolyclinicView/FormRecipe.resx | 120 ++++++++++++++++++ .../PolyclinicView/FormSymptom.Designer.cs | 39 ++++++ Polyclinic/PolyclinicView/FormSymptom.cs | 20 +++ Polyclinic/PolyclinicView/FormSymptom.resx | 120 ++++++++++++++++++ .../PolyclinicView/FormUser.Designer.cs | 39 ++++++ Polyclinic/PolyclinicView/FormUser.cs | 20 +++ Polyclinic/PolyclinicView/FormUser.resx | 120 ++++++++++++++++++ 21 files changed, 1253 insertions(+) create mode 100644 Polyclinic/PolyclinicView/FormCourse.Designer.cs create mode 100644 Polyclinic/PolyclinicView/FormCourse.cs create mode 100644 Polyclinic/PolyclinicView/FormCourse.resx create mode 100644 Polyclinic/PolyclinicView/FormDiagnose.Designer.cs create mode 100644 Polyclinic/PolyclinicView/FormDiagnose.cs create mode 100644 Polyclinic/PolyclinicView/FormDiagnose.resx create mode 100644 Polyclinic/PolyclinicView/FormMedicament.Designer.cs create mode 100644 Polyclinic/PolyclinicView/FormMedicament.cs create mode 100644 Polyclinic/PolyclinicView/FormMedicament.resx create mode 100644 Polyclinic/PolyclinicView/FormProcedure.Designer.cs create mode 100644 Polyclinic/PolyclinicView/FormProcedure.cs create mode 100644 Polyclinic/PolyclinicView/FormProcedure.resx create mode 100644 Polyclinic/PolyclinicView/FormRecipe.Designer.cs create mode 100644 Polyclinic/PolyclinicView/FormRecipe.cs create mode 100644 Polyclinic/PolyclinicView/FormRecipe.resx create mode 100644 Polyclinic/PolyclinicView/FormSymptom.Designer.cs create mode 100644 Polyclinic/PolyclinicView/FormSymptom.cs create mode 100644 Polyclinic/PolyclinicView/FormSymptom.resx create mode 100644 Polyclinic/PolyclinicView/FormUser.Designer.cs create mode 100644 Polyclinic/PolyclinicView/FormUser.cs create mode 100644 Polyclinic/PolyclinicView/FormUser.resx diff --git a/Polyclinic/PolyclinicView/FormCourse.Designer.cs b/Polyclinic/PolyclinicView/FormCourse.Designer.cs new file mode 100644 index 0000000..7da30eb --- /dev/null +++ b/Polyclinic/PolyclinicView/FormCourse.Designer.cs @@ -0,0 +1,39 @@ +namespace PolyclinicView +{ + partial class FormCourse + { + /// + /// Required designer variable. + /// + private System.ComponentModel.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 = "FormCourse"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormCourse.cs b/Polyclinic/PolyclinicView/FormCourse.cs new file mode 100644 index 0000000..929a128 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormCourse.cs @@ -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 PolyclinicView +{ + public partial class FormCourse : Form + { + public FormCourse() + { + InitializeComponent(); + } + } +} diff --git a/Polyclinic/PolyclinicView/FormCourse.resx b/Polyclinic/PolyclinicView/FormCourse.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormCourse.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormDiagnose.Designer.cs b/Polyclinic/PolyclinicView/FormDiagnose.Designer.cs new file mode 100644 index 0000000..5dd2d8f --- /dev/null +++ b/Polyclinic/PolyclinicView/FormDiagnose.Designer.cs @@ -0,0 +1,39 @@ +namespace PolyclinicView +{ + partial class FormDiagnose + { + /// + /// Required designer variable. + /// + private System.ComponentModel.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 = "FormDiagnose"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormDiagnose.cs b/Polyclinic/PolyclinicView/FormDiagnose.cs new file mode 100644 index 0000000..48b413d --- /dev/null +++ b/Polyclinic/PolyclinicView/FormDiagnose.cs @@ -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 PolyclinicView +{ + public partial class FormDiagnose : Form + { + public FormDiagnose() + { + InitializeComponent(); + } + } +} diff --git a/Polyclinic/PolyclinicView/FormDiagnose.resx b/Polyclinic/PolyclinicView/FormDiagnose.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormDiagnose.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormMedicament.Designer.cs b/Polyclinic/PolyclinicView/FormMedicament.Designer.cs new file mode 100644 index 0000000..17ccd58 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormMedicament.Designer.cs @@ -0,0 +1,39 @@ +namespace PolyclinicView +{ + partial class FormMedicament + { + /// + /// Required designer variable. + /// + private System.ComponentModel.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 = "FormMedicament"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormMedicament.cs b/Polyclinic/PolyclinicView/FormMedicament.cs new file mode 100644 index 0000000..ccb24e4 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormMedicament.cs @@ -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 PolyclinicView +{ + public partial class FormMedicament : Form + { + public FormMedicament() + { + InitializeComponent(); + } + } +} diff --git a/Polyclinic/PolyclinicView/FormMedicament.resx b/Polyclinic/PolyclinicView/FormMedicament.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormMedicament.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormProcedure.Designer.cs b/Polyclinic/PolyclinicView/FormProcedure.Designer.cs new file mode 100644 index 0000000..612402a --- /dev/null +++ b/Polyclinic/PolyclinicView/FormProcedure.Designer.cs @@ -0,0 +1,39 @@ +namespace PolyclinicView +{ + partial class FormProcedure + { + /// + /// Required designer variable. + /// + private System.ComponentModel.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 = "FormProcedure"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormProcedure.cs b/Polyclinic/PolyclinicView/FormProcedure.cs new file mode 100644 index 0000000..2cdd61a --- /dev/null +++ b/Polyclinic/PolyclinicView/FormProcedure.cs @@ -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 PolyclinicView +{ + public partial class FormProcedure : Form + { + public FormProcedure() + { + InitializeComponent(); + } + } +} diff --git a/Polyclinic/PolyclinicView/FormProcedure.resx b/Polyclinic/PolyclinicView/FormProcedure.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormProcedure.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormRecipe.Designer.cs b/Polyclinic/PolyclinicView/FormRecipe.Designer.cs new file mode 100644 index 0000000..1450d77 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormRecipe.Designer.cs @@ -0,0 +1,39 @@ +namespace PolyclinicView +{ + partial class FormRecipe + { + /// + /// Required designer variable. + /// + private System.ComponentModel.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 = "FormRecipe"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormRecipe.cs b/Polyclinic/PolyclinicView/FormRecipe.cs new file mode 100644 index 0000000..58aabb5 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormRecipe.cs @@ -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 PolyclinicView +{ + public partial class FormRecipe : Form + { + public FormRecipe() + { + InitializeComponent(); + } + } +} diff --git a/Polyclinic/PolyclinicView/FormRecipe.resx b/Polyclinic/PolyclinicView/FormRecipe.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormRecipe.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormSymptom.Designer.cs b/Polyclinic/PolyclinicView/FormSymptom.Designer.cs new file mode 100644 index 0000000..2ee9a13 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormSymptom.Designer.cs @@ -0,0 +1,39 @@ +namespace PolyclinicView +{ + partial class FormSymptom + { + /// + /// Required designer variable. + /// + private System.ComponentModel.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 = "FormSymptom"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormSymptom.cs b/Polyclinic/PolyclinicView/FormSymptom.cs new file mode 100644 index 0000000..b0cefc7 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormSymptom.cs @@ -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 PolyclinicView +{ + public partial class FormSymptom : Form + { + public FormSymptom() + { + InitializeComponent(); + } + } +} diff --git a/Polyclinic/PolyclinicView/FormSymptom.resx b/Polyclinic/PolyclinicView/FormSymptom.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormSymptom.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormUser.Designer.cs b/Polyclinic/PolyclinicView/FormUser.Designer.cs new file mode 100644 index 0000000..0f3456c --- /dev/null +++ b/Polyclinic/PolyclinicView/FormUser.Designer.cs @@ -0,0 +1,39 @@ +namespace PolyclinicView +{ + partial class FormUser + { + /// + /// Required designer variable. + /// + private System.ComponentModel.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 = "FormUser"; + } + + #endregion + } +} \ No newline at end of file diff --git a/Polyclinic/PolyclinicView/FormUser.cs b/Polyclinic/PolyclinicView/FormUser.cs new file mode 100644 index 0000000..ddf628a --- /dev/null +++ b/Polyclinic/PolyclinicView/FormUser.cs @@ -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 PolyclinicView +{ + public partial class FormUser : Form + { + public FormUser() + { + InitializeComponent(); + } + } +} diff --git a/Polyclinic/PolyclinicView/FormUser.resx b/Polyclinic/PolyclinicView/FormUser.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Polyclinic/PolyclinicView/FormUser.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file