diff --git a/Polyclinic/PolyclinicView/FormMedicaments.Designer.cs b/Polyclinic/PolyclinicView/FormMedicaments.Designer.cs
new file mode 100644
index 0000000..d62189c
--- /dev/null
+++ b/Polyclinic/PolyclinicView/FormMedicaments.Designer.cs
@@ -0,0 +1,126 @@
+namespace PolyclinicView
+{
+ partial class FormMedicaments
+ {
+ ///
+ /// 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()
+ {
+ buttonRefresh = new Button();
+ buttonDelete = new Button();
+ buttonUpdate = new Button();
+ buttonAdd = new Button();
+ dataGridView = new DataGridView();
+ ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
+ SuspendLayout();
+ //
+ // buttonRefresh
+ //
+ buttonRefresh.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonRefresh.Location = new Point(705, 383);
+ buttonRefresh.Margin = new Padding(3, 4, 3, 4);
+ buttonRefresh.Name = "buttonRefresh";
+ buttonRefresh.Size = new Size(210, 75);
+ buttonRefresh.TabIndex = 14;
+ buttonRefresh.Text = "Обновить";
+ buttonRefresh.UseVisualStyleBackColor = true;
+ //
+ // buttonDelete
+ //
+ buttonDelete.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
+ buttonDelete.Location = new Point(705, 267);
+ buttonDelete.Margin = new Padding(3, 4, 3, 4);
+ buttonDelete.Name = "buttonDelete";
+ buttonDelete.Size = new Size(210, 75);
+ buttonDelete.TabIndex = 13;
+ buttonDelete.Text = "Удалить";
+ buttonDelete.UseVisualStyleBackColor = true;
+ //
+ // buttonUpdate
+ //
+ buttonUpdate.Anchor = AnchorStyles.Top | AnchorStyles.Right;
+ buttonUpdate.Location = new Point(705, 146);
+ buttonUpdate.Margin = new Padding(3, 4, 3, 4);
+ buttonUpdate.Name = "buttonUpdate";
+ buttonUpdate.Size = new Size(210, 75);
+ buttonUpdate.TabIndex = 12;
+ buttonUpdate.Text = "Изменить";
+ buttonUpdate.UseVisualStyleBackColor = true;
+ //
+ // buttonAdd
+ //
+ buttonAdd.Anchor = AnchorStyles.Top | AnchorStyles.Right;
+ buttonAdd.Location = new Point(705, 23);
+ buttonAdd.Margin = new Padding(3, 4, 3, 4);
+ buttonAdd.Name = "buttonAdd";
+ buttonAdd.Size = new Size(210, 75);
+ buttonAdd.TabIndex = 11;
+ buttonAdd.Text = "Добавить";
+ buttonAdd.UseVisualStyleBackColor = true;
+ //
+ // dataGridView
+ //
+ dataGridView.BackgroundColor = Color.Honeydew;
+ dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ dataGridView.Dock = DockStyle.Left;
+ dataGridView.Location = new Point(0, 0);
+ dataGridView.Margin = new Padding(3, 4, 3, 4);
+ dataGridView.MultiSelect = false;
+ dataGridView.Name = "dataGridView";
+ dataGridView.ReadOnly = true;
+ dataGridView.RowHeadersVisible = false;
+ dataGridView.RowHeadersWidth = 51;
+ dataGridView.RowTemplate.Height = 29;
+ dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
+ dataGridView.Size = new Size(664, 477);
+ dataGridView.TabIndex = 10;
+ //
+ // FormMedicaments
+ //
+ AutoScaleDimensions = new SizeF(9F, 21F);
+ AutoScaleMode = AutoScaleMode.Font;
+ BackColor = Color.LightGreen;
+ ClientSize = new Size(952, 477);
+ Controls.Add(buttonRefresh);
+ Controls.Add(buttonDelete);
+ Controls.Add(buttonUpdate);
+ Controls.Add(buttonAdd);
+ Controls.Add(dataGridView);
+ Font = new Font("Candara", 10.2F, FontStyle.Regular, GraphicsUnit.Point);
+ Name = "FormMedicaments";
+ Text = "Список препаратов";
+ ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
+ ResumeLayout(false);
+ }
+
+ #endregion
+
+ private Button buttonRefresh;
+ private Button buttonDelete;
+ private Button buttonUpdate;
+ private Button buttonAdd;
+ private DataGridView dataGridView;
+ }
+}
\ No newline at end of file
diff --git a/Polyclinic/PolyclinicView/FormMedicaments.cs b/Polyclinic/PolyclinicView/FormMedicaments.cs
new file mode 100644
index 0000000..96042e0
--- /dev/null
+++ b/Polyclinic/PolyclinicView/FormMedicaments.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 FormMedicaments : Form
+ {
+ public FormMedicaments()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Polyclinic/PolyclinicView/FormMedicaments.resx b/Polyclinic/PolyclinicView/FormMedicaments.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/Polyclinic/PolyclinicView/FormMedicaments.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