diff --git a/TravelCompany/TravelCompany/FormCreateSupply.Designer.cs b/TravelCompany/TravelCompany/FormCreateSupply.Designer.cs
new file mode 100644
index 0000000..48fb494
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormCreateSupply.Designer.cs
@@ -0,0 +1,143 @@
+namespace TravelCompanyView
+{
+ partial class FormCreateSupply
+ {
+ ///
+ /// 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.comboBoxShop = new System.Windows.Forms.ComboBox();
+ this.labelShop = new System.Windows.Forms.Label();
+ this.labelTravel = new System.Windows.Forms.Label();
+ this.comboBoxTravel = new System.Windows.Forms.ComboBox();
+ this.labelCount = new System.Windows.Forms.Label();
+ this.textBoxCount = new System.Windows.Forms.TextBox();
+ this.buttonCancel = new System.Windows.Forms.Button();
+ this.buttonSave = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // comboBoxShop
+ //
+ this.comboBoxShop.FormattingEnabled = true;
+ this.comboBoxShop.Location = new System.Drawing.Point(115, 12);
+ this.comboBoxShop.Name = "comboBoxShop";
+ this.comboBoxShop.Size = new System.Drawing.Size(344, 28);
+ this.comboBoxShop.TabIndex = 0;
+ //
+ // labelShop
+ //
+ this.labelShop.AutoSize = true;
+ this.labelShop.Location = new System.Drawing.Point(12, 15);
+ this.labelShop.Name = "labelShop";
+ this.labelShop.Size = new System.Drawing.Size(76, 20);
+ this.labelShop.TabIndex = 1;
+ this.labelShop.Text = "Магазин: ";
+ //
+ // labelTravel
+ //
+ this.labelTravel.AutoSize = true;
+ this.labelTravel.Location = new System.Drawing.Point(12, 49);
+ this.labelTravel.Name = "labelTravel";
+ this.labelTravel.Size = new System.Drawing.Size(75, 20);
+ this.labelTravel.TabIndex = 2;
+ this.labelTravel.Text = "Изделие: ";
+ //
+ // comboBoxTravel
+ //
+ this.comboBoxTravel.FormattingEnabled = true;
+ this.comboBoxTravel.Location = new System.Drawing.Point(115, 46);
+ this.comboBoxTravel.Name = "comboBoxTravel";
+ this.comboBoxTravel.Size = new System.Drawing.Size(344, 28);
+ this.comboBoxTravel.TabIndex = 3;
+ //
+ // labelCount
+ //
+ this.labelCount.AutoSize = true;
+ this.labelCount.Location = new System.Drawing.Point(12, 83);
+ this.labelCount.Name = "labelCount";
+ this.labelCount.Size = new System.Drawing.Size(97, 20);
+ this.labelCount.TabIndex = 4;
+ this.labelCount.Text = "Количество: ";
+ //
+ // textBoxCount
+ //
+ this.textBoxCount.Location = new System.Drawing.Point(115, 80);
+ this.textBoxCount.Name = "textBoxCount";
+ this.textBoxCount.Size = new System.Drawing.Size(344, 27);
+ this.textBoxCount.TabIndex = 5;
+ //
+ // buttonCancel
+ //
+ this.buttonCancel.Location = new System.Drawing.Point(300, 113);
+ this.buttonCancel.Name = "buttonCancel";
+ this.buttonCancel.Size = new System.Drawing.Size(116, 39);
+ this.buttonCancel.TabIndex = 6;
+ this.buttonCancel.Text = "Отмена";
+ this.buttonCancel.UseVisualStyleBackColor = true;
+ this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
+ //
+ // buttonSave
+ //
+ this.buttonSave.Location = new System.Drawing.Point(168, 113);
+ this.buttonSave.Name = "buttonSave";
+ this.buttonSave.Size = new System.Drawing.Size(116, 39);
+ this.buttonSave.TabIndex = 7;
+ this.buttonSave.Text = "Сохранить";
+ this.buttonSave.UseVisualStyleBackColor = true;
+ this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
+ //
+ // FormCreateSupply
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(471, 164);
+ this.Controls.Add(this.buttonSave);
+ this.Controls.Add(this.buttonCancel);
+ this.Controls.Add(this.textBoxCount);
+ this.Controls.Add(this.labelCount);
+ this.Controls.Add(this.comboBoxTravel);
+ this.Controls.Add(this.labelTravel);
+ this.Controls.Add(this.labelShop);
+ this.Controls.Add(this.comboBoxShop);
+ this.Name = "FormCreateSupply";
+ this.Text = "Создание поставки";
+ this.Load += new System.EventHandler(this.FormCreateSupply_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private ComboBox comboBoxShop;
+ private Label labelShop;
+ private Label labelTravel;
+ private ComboBox comboBoxTravel;
+ private Label labelCount;
+ private TextBox textBoxCount;
+ private Button buttonCancel;
+ private Button buttonSave;
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompany/FormCreateSupply.cs b/TravelCompany/TravelCompany/FormCreateSupply.cs
new file mode 100644
index 0000000..bd03b9f
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormCreateSupply.cs
@@ -0,0 +1,99 @@
+using Microsoft.Extensions.Logging;
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.BusinessLogicsContracts;
+using TravelCompanyContracts.ViewModels;
+using System;
+using System.Collections;
+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;
+using static System.Windows.Forms.VisualStyles.VisualStyleElement;
+
+namespace TravelCompanyView
+{
+ public partial class FormCreateSupply : Form
+ {
+ private readonly ILogger _logger;
+ private readonly ITravelLogic _logicP;
+ private readonly IShopLogic _logicS;
+ private List _shopList = new List();
+ private List _TravelList = new List();
+
+ public FormCreateSupply(ILogger logger, ITravelLogic logicP, IShopLogic logicS)
+ {
+ InitializeComponent();
+ _logger = logger;
+ _logicP = logicP;
+ _logicS = logicS;
+ }
+
+ private void FormCreateSupply_Load(object sender, EventArgs e)
+ {
+ _shopList = _logicS.ReadList(null);
+ _TravelList = _logicP.ReadList(null);
+ if (_shopList != null)
+ {
+ comboBoxShop.DisplayMember = "ShopName";
+ comboBoxShop.ValueMember = "Id";
+ comboBoxShop.DataSource = _shopList;
+ comboBoxShop.SelectedItem = null;
+ _logger.LogInformation("Загрузка магазинов для поставок");
+ }
+ if (_TravelList != null)
+ {
+ comboBoxTravel.DisplayMember = "TravelName";
+ comboBoxTravel.ValueMember = "Id";
+ comboBoxTravel.DataSource = _TravelList;
+ comboBoxTravel.SelectedItem = null;
+ _logger.LogInformation("Загрузка пиццы для поставок");
+ }
+ }
+
+ private void ButtonSave_Click(object sender, EventArgs e)
+ {
+ if (comboBoxShop.SelectedValue == null)
+ {
+ MessageBox.Show("Выберите магазин", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ return;
+ }
+ if (comboBoxTravel.SelectedValue == null)
+ {
+ MessageBox.Show("Выберите изделие", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ return;
+ }
+ _logger.LogInformation("Создание поставки");
+ try
+ {
+ var operationResult = _logicS.MakeSupply(new SupplyBindingModel
+ {
+ ShopId = Convert.ToInt32(comboBoxShop.SelectedValue),
+ TravelId = Convert.ToInt32(comboBoxTravel.SelectedValue),
+ Count = Convert.ToInt32(textBoxCount.Text)
+ });
+ if (!operationResult)
+ {
+ throw new Exception("Ошибка при создании поставки. Дополнительная информация в логах.");
+ }
+ MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ DialogResult = DialogResult.OK;
+ Close();
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Ошибка создания поставки");
+ MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+
+ private void ButtonCancel_Click(object sender, EventArgs e)
+ {
+ DialogResult = DialogResult.Cancel;
+ Close();
+ }
+ }
+}
diff --git a/TravelCompany/TravelCompany/FormCreateSupply.resx b/TravelCompany/TravelCompany/FormCreateSupply.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormCreateSupply.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/TravelCompany/TravelCompany/FormMain.Designer.cs b/TravelCompany/TravelCompany/FormMain.Designer.cs
index e2b8f72..e7b436f 100644
--- a/TravelCompany/TravelCompany/FormMain.Designer.cs
+++ b/TravelCompany/TravelCompany/FormMain.Designer.cs
@@ -30,15 +30,18 @@
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
toolStrip1 = new ToolStrip();
- toolStripDropDownButton1 = new ToolStripDropDownButton();
- компонентыToolStripMenuItem = new ToolStripMenuItem();
- ПутёвкиToolStripMenuItem = new ToolStripMenuItem();
buttonCreateOrder = new Button();
buttonTakeOrderInWork = new Button();
buttonOrderReady = new Button();
buttonIssuedOrder = new Button();
buttonRef = new Button();
dataGridView = new DataGridView();
+ operationToolStripMenuItem = new ToolStripMenuItem();
+ transactionToolStripMenuItem = new ToolStripMenuItem();
+ компонентыToolStripMenuItem = new ToolStripMenuItem();
+ ПутёвкиToolStripMenuItem = new ToolStripMenuItem();
+ магазиныToolStripMenuItem = new ToolStripMenuItem();
+ toolStripDropDownButton1 = new ToolStripDropDownButton();
toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
@@ -46,37 +49,13 @@
// toolStrip1
//
toolStrip1.ImageScalingSize = new Size(20, 20);
- toolStrip1.Items.AddRange(new ToolStripItem[] { toolStripDropDownButton1 });
+ toolStrip1.Items.AddRange(new ToolStripItem[] { toolStripDropDownButton1, operationToolStripMenuItem });
toolStrip1.Location = new Point(0, 0);
toolStrip1.Name = "toolStrip1";
toolStrip1.Size = new Size(969, 25);
toolStrip1.TabIndex = 0;
toolStrip1.Text = "toolStrip1";
//
- // toolStripDropDownButton1
- //
- toolStripDropDownButton1.DisplayStyle = ToolStripItemDisplayStyle.Text;
- toolStripDropDownButton1.DropDownItems.AddRange(new ToolStripItem[] { компонентыToolStripMenuItem, ПутёвкиToolStripMenuItem });
- toolStripDropDownButton1.Image = (Image)resources.GetObject("toolStripDropDownButton1.Image");
- toolStripDropDownButton1.ImageTransparentColor = Color.Magenta;
- toolStripDropDownButton1.Name = "toolStripDropDownButton1";
- toolStripDropDownButton1.Size = new Size(88, 22);
- toolStripDropDownButton1.Text = "Справочник";
- //
- // компонентыToolStripMenuItem
- //
- компонентыToolStripMenuItem.Name = "компонентыToolStripMenuItem";
- компонентыToolStripMenuItem.Size = new Size(174, 22);
- компонентыToolStripMenuItem.Text = "Компоненты";
- компонентыToolStripMenuItem.Click += компонентыToolStripMenuItem_Click;
- //
- // ПутёвкиToolStripMenuItem
- //
- ПутёвкиToolStripMenuItem.Name = "ПутёвкиToolStripMenuItem";
- ПутёвкиToolStripMenuItem.Size = new Size(174, 22);
- ПутёвкиToolStripMenuItem.Text = "Туристич. путёвки";
- ПутёвкиToolStripMenuItem.Click += консервыToolStripMenuItem_Click;
- //
// buttonCreateOrder
//
buttonCreateOrder.Location = new Point(800, 56);
@@ -139,6 +118,51 @@
dataGridView.Size = new Size(763, 435);
dataGridView.TabIndex = 6;
//
+ // operationToolStripMenuItem
+ //
+ operationToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { transactionToolStripMenuItem });
+ operationToolStripMenuItem.Name = "operationToolStripMenuItem";
+ operationToolStripMenuItem.Size = new Size(75, 25);
+ operationToolStripMenuItem.Text = "Операции";
+ //
+ // transactionToolStripMenuItem
+ //
+ transactionToolStripMenuItem.Name = "transactionToolStripMenuItem";
+ transactionToolStripMenuItem.Size = new Size(180, 22);
+ transactionToolStripMenuItem.Text = "Поставка";
+ transactionToolStripMenuItem.Click += transactionToolStripMenuItem_Click;
+ //
+ // компонентыToolStripMenuItem
+ //
+ компонентыToolStripMenuItem.Name = "компонентыToolStripMenuItem";
+ компонентыToolStripMenuItem.Size = new Size(180, 22);
+ компонентыToolStripMenuItem.Text = "Компоненты";
+ компонентыToolStripMenuItem.Click += компонентыToolStripMenuItem_Click;
+ //
+ // ПутёвкиToolStripMenuItem
+ //
+ ПутёвкиToolStripMenuItem.Name = "ПутёвкиToolStripMenuItem";
+ ПутёвкиToolStripMenuItem.Size = new Size(180, 22);
+ ПутёвкиToolStripMenuItem.Text = "Туристич. путёвки";
+ ПутёвкиToolStripMenuItem.Click += консервыToolStripMenuItem_Click;
+ //
+ // магазиныToolStripMenuItem
+ //
+ магазиныToolStripMenuItem.Name = "магазиныToolStripMenuItem";
+ магазиныToolStripMenuItem.Size = new Size(180, 22);
+ магазиныToolStripMenuItem.Text = "Магазины";
+ магазиныToolStripMenuItem.Click += shopsToolStripMenuItem_Click;
+ //
+ // toolStripDropDownButton1
+ //
+ toolStripDropDownButton1.DisplayStyle = ToolStripItemDisplayStyle.Text;
+ toolStripDropDownButton1.DropDownItems.AddRange(new ToolStripItem[] { компонентыToolStripMenuItem, ПутёвкиToolStripMenuItem, магазиныToolStripMenuItem });
+ toolStripDropDownButton1.Image = (Image)resources.GetObject("toolStripDropDownButton1.Image");
+ toolStripDropDownButton1.ImageTransparentColor = Color.Magenta;
+ toolStripDropDownButton1.Name = "toolStripDropDownButton1";
+ toolStripDropDownButton1.Size = new Size(88, 22);
+ toolStripDropDownButton1.Text = "Справочник";
+ //
// FormMain
//
AutoScaleDimensions = new SizeF(7F, 15F);
@@ -173,5 +197,8 @@
private ToolStripDropDownButton toolStripDropDownButton1;
private ToolStripMenuItem компонентыToolStripMenuItem;
private ToolStripMenuItem ПутёвкиToolStripMenuItem;
+ private ToolStripMenuItem магазиныToolStripMenuItem;
+ private ToolStripMenuItem operationToolStripMenuItem;
+ private ToolStripMenuItem transactionToolStripMenuItem;
}
}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompany/FormMain.cs b/TravelCompany/TravelCompany/FormMain.cs
index d25b396..882db52 100644
--- a/TravelCompany/TravelCompany/FormMain.cs
+++ b/TravelCompany/TravelCompany/FormMain.cs
@@ -10,6 +10,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
+using TravelCompanyView;
namespace TravelCompany.Forms
{
@@ -151,5 +152,23 @@ namespace TravelCompany.Forms
{
LoadData();
}
+
+ private void shopsToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var service = Program.ServiceProvider?.GetService(typeof(FormShops));
+ if (service is FormShops form)
+ {
+ form.ShowDialog();
+ }
+ }
+
+ private void transactionToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ var service = Program.ServiceProvider?.GetService(typeof(FormCreateSupply));
+ if (service is FormCreateSupply form)
+ {
+ form.ShowDialog();
+ }
+ }
}
}
diff --git a/TravelCompany/TravelCompany/FormShop.Designer.cs b/TravelCompany/TravelCompany/FormShop.Designer.cs
new file mode 100644
index 0000000..e35c5a4
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormShop.Designer.cs
@@ -0,0 +1,196 @@
+namespace TravelCompanyView
+{
+ partial class FormShop
+ {
+ ///
+ /// 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()
+ {
+ labelName = new Label();
+ textBoxName = new TextBox();
+ textBoxAdress = new TextBox();
+ labelAdress = new Label();
+ buttonCancel = new Button();
+ buttonSave = new Button();
+ dataGridView = new DataGridView();
+ label1 = new Label();
+ dateTimeOpen = new DateTimePicker();
+ id = new DataGridViewTextBoxColumn();
+ TravelName = new DataGridViewTextBoxColumn();
+ Count = new DataGridViewTextBoxColumn();
+ ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
+ SuspendLayout();
+ //
+ // labelName
+ //
+ labelName.AutoSize = true;
+ labelName.Location = new Point(10, 11);
+ labelName.Name = "labelName";
+ labelName.Size = new Size(65, 15);
+ labelName.TabIndex = 0;
+ labelName.Text = "Название: ";
+ //
+ // textBoxName
+ //
+ textBoxName.Location = new Point(89, 9);
+ textBoxName.Margin = new Padding(3, 2, 3, 2);
+ textBoxName.Name = "textBoxName";
+ textBoxName.Size = new Size(242, 23);
+ textBoxName.TabIndex = 1;
+ //
+ // textBoxAdress
+ //
+ textBoxAdress.Location = new Point(89, 44);
+ textBoxAdress.Margin = new Padding(3, 2, 3, 2);
+ textBoxAdress.Name = "textBoxAdress";
+ textBoxAdress.Size = new Size(374, 23);
+ textBoxAdress.TabIndex = 3;
+ //
+ // labelAdress
+ //
+ labelAdress.AutoSize = true;
+ labelAdress.Location = new Point(10, 46);
+ labelAdress.Name = "labelAdress";
+ labelAdress.Size = new Size(46, 15);
+ labelAdress.TabIndex = 2;
+ labelAdress.Text = "Адрес: ";
+ //
+ // buttonCancel
+ //
+ buttonCancel.Location = new Point(395, 343);
+ buttonCancel.Margin = new Padding(3, 2, 3, 2);
+ buttonCancel.Name = "buttonCancel";
+ buttonCancel.Size = new Size(114, 33);
+ buttonCancel.TabIndex = 5;
+ buttonCancel.Text = "Отмена";
+ buttonCancel.UseVisualStyleBackColor = true;
+ buttonCancel.Click += buttonCancel_Click;
+ //
+ // buttonSave
+ //
+ buttonSave.Location = new Point(276, 343);
+ buttonSave.Margin = new Padding(3, 2, 3, 2);
+ buttonSave.Name = "buttonSave";
+ buttonSave.Size = new Size(114, 33);
+ buttonSave.TabIndex = 6;
+ buttonSave.Text = "Сохранить";
+ buttonSave.UseVisualStyleBackColor = true;
+ buttonSave.Click += buttonSave_Click;
+ //
+ // dataGridView
+ //
+ dataGridView.AllowUserToAddRows = false;
+ dataGridView.AllowUserToDeleteRows = false;
+ dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
+ dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ dataGridView.Columns.AddRange(new DataGridViewColumn[] { id, TravelName, Count });
+ dataGridView.Location = new Point(10, 108);
+ dataGridView.Margin = new Padding(3, 2, 3, 2);
+ dataGridView.Name = "dataGridView";
+ dataGridView.ReadOnly = true;
+ dataGridView.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.None;
+ dataGridView.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders;
+ dataGridView.RowTemplate.Height = 29;
+ dataGridView.Size = new Size(498, 230);
+ dataGridView.TabIndex = 7;
+ //
+ // label1
+ //
+ label1.AutoSize = true;
+ label1.Location = new Point(10, 77);
+ label1.Name = "label1";
+ label1.Size = new Size(87, 15);
+ label1.TabIndex = 8;
+ label1.Text = "Дата открытия";
+ //
+ // dateTimeOpen
+ //
+ dateTimeOpen.Location = new Point(112, 77);
+ dateTimeOpen.Margin = new Padding(3, 2, 3, 2);
+ dateTimeOpen.Name = "dateTimeOpen";
+ dateTimeOpen.Size = new Size(351, 23);
+ dateTimeOpen.TabIndex = 9;
+ //
+ // id
+ //
+ id.HeaderText = "id";
+ id.MinimumWidth = 6;
+ id.Name = "id";
+ id.ReadOnly = true;
+ id.Visible = false;
+ //
+ // TravelName
+ //
+ TravelName.HeaderText = "Путёвка";
+ TravelName.MinimumWidth = 6;
+ TravelName.Name = "TravelName";
+ TravelName.ReadOnly = true;
+ //
+ // Count
+ //
+ Count.HeaderText = "Количество";
+ Count.MinimumWidth = 6;
+ Count.Name = "Count";
+ Count.ReadOnly = true;
+ //
+ // FormShop
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(519, 385);
+ Controls.Add(dateTimeOpen);
+ Controls.Add(label1);
+ Controls.Add(dataGridView);
+ Controls.Add(buttonSave);
+ Controls.Add(buttonCancel);
+ Controls.Add(textBoxAdress);
+ Controls.Add(labelAdress);
+ Controls.Add(textBoxName);
+ Controls.Add(labelName);
+ Margin = new Padding(3, 2, 3, 2);
+ Name = "FormShop";
+ Text = "Магазин";
+ Load += FormShop_Load;
+ ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+
+ private Label labelName;
+ private TextBox textBoxName;
+ private TextBox textBoxAdress;
+ private Label labelAdress;
+ private Button buttonCancel;
+ private Button buttonSave;
+ private DataGridView dataGridView;
+ private Label label1;
+ private DateTimePicker dateTimeOpen;
+ private DataGridViewTextBoxColumn id;
+ private DataGridViewTextBoxColumn TravelName;
+ private DataGridViewTextBoxColumn Count;
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompany/FormShop.cs b/TravelCompany/TravelCompany/FormShop.cs
new file mode 100644
index 0000000..affd510
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormShop.cs
@@ -0,0 +1,128 @@
+using TravelCompanyDataModels.Models;
+using Microsoft.Extensions.Logging;
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.BusinessLogicsContracts;
+using TravelCompanyContracts.SearchModels;
+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 TravelCompanyView
+{
+ public partial class FormShop : Form
+ {
+ private readonly ILogger _logger;
+ private readonly IShopLogic _logic;
+ private int? _id;
+ public int Id { set { _id = value; } }
+ private Dictionary _ShopTravels;
+ private DateTime? _openingDate = null;
+
+ public FormShop(ILogger logger, IShopLogic logic)
+ {
+ InitializeComponent();
+ _logger = logger;
+ _logic = logic;
+ _ShopTravels = new Dictionary();
+ }
+
+ private void FormShop_Load(object sender, EventArgs e)
+ {
+ if (_id.HasValue)
+ {
+ _logger.LogInformation("Загрузка магазина");
+ try
+ {
+ var view = _logic.ReadElement(new ShopSearchModel
+ {
+ Id = _id.Value
+ });
+ if (view != null)
+ {
+ textBoxName.Text = view.ShopName;
+ textBoxAdress.Text = view.Adress;
+ dateTimeOpen.Value = view.OpeningDate;
+ _ShopTravels = view.ShopTravels ?? new Dictionary();
+ LoadData();
+ }
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Ошибка загрузки магазина");
+ MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+ }
+
+ private void LoadData()
+ {
+ _logger.LogInformation("Загрузка изделий в магазине");
+ try
+ {
+ if (_ShopTravels != null)
+ {
+ dataGridView.Rows.Clear();
+ foreach (var sr in _ShopTravels)
+ {
+ dataGridView.Rows.Add(new object[] { sr.Key, sr.Value.Item1.TravelName, sr.Value.Item2 });
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Ошибка загрузки изделий магазина");
+ MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+
+ private void buttonSave_Click(object sender, EventArgs e)
+ {
+ if (string.IsNullOrEmpty(textBoxName.Text))
+ {
+ MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ return;
+ }
+ if (string.IsNullOrEmpty(textBoxAdress.Text))
+ {
+ MessageBox.Show("Заполните адрес", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ return;
+ }
+ _logger.LogInformation("Сохранение магазина");
+ try
+ {
+ var model = new ShopBindingModel
+ {
+ Id = _id ?? 0,
+ ShopName = textBoxName.Text,
+ Adress = textBoxAdress.Text,
+ OpeningDate = dateTimeOpen.Value
+ };
+ var operationResult = _id.HasValue ? _logic.Update(model) : _logic.Create(model);
+ if (!operationResult)
+ {
+ throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
+ }
+ MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ DialogResult = DialogResult.OK;
+ Close();
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Ошибка сохранения магазина");
+ MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+
+ private void buttonCancel_Click(object sender, EventArgs e)
+ {
+ DialogResult = DialogResult.Cancel;
+ Close();
+ }
+ }
+}
diff --git a/TravelCompany/TravelCompany/FormShop.resx b/TravelCompany/TravelCompany/FormShop.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormShop.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/TravelCompany/TravelCompany/FormShops.Designer.cs b/TravelCompany/TravelCompany/FormShops.Designer.cs
new file mode 100644
index 0000000..1da89b1
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormShops.Designer.cs
@@ -0,0 +1,130 @@
+namespace TravelCompanyView
+{
+ partial class FormShops
+ {
+ ///
+ /// 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.ToolsPanel = new System.Windows.Forms.Panel();
+ this.buttonRef = new System.Windows.Forms.Button();
+ this.buttonDel = new System.Windows.Forms.Button();
+ this.buttonUpd = new System.Windows.Forms.Button();
+ this.buttonAdd = new System.Windows.Forms.Button();
+ this.dataGridView = new System.Windows.Forms.DataGridView();
+ this.ToolsPanel.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
+ this.SuspendLayout();
+ //
+ // ToolsPanel
+ //
+ this.ToolsPanel.Controls.Add(this.buttonRef);
+ this.ToolsPanel.Controls.Add(this.buttonDel);
+ this.ToolsPanel.Controls.Add(this.buttonUpd);
+ this.ToolsPanel.Controls.Add(this.buttonAdd);
+ this.ToolsPanel.Location = new System.Drawing.Point(608, 12);
+ this.ToolsPanel.Name = "ToolsPanel";
+ this.ToolsPanel.Size = new System.Drawing.Size(180, 426);
+ this.ToolsPanel.TabIndex = 3;
+ //
+ // buttonRef
+ //
+ this.buttonRef.Location = new System.Drawing.Point(31, 206);
+ this.buttonRef.Name = "buttonRef";
+ this.buttonRef.Size = new System.Drawing.Size(126, 36);
+ this.buttonRef.TabIndex = 3;
+ this.buttonRef.Text = "Обновить";
+ this.buttonRef.UseVisualStyleBackColor = true;
+ this.buttonRef.Click += new System.EventHandler(this.ButtonRef_Click);
+ //
+ // buttonDel
+ //
+ this.buttonDel.Location = new System.Drawing.Point(31, 142);
+ this.buttonDel.Name = "buttonDel";
+ this.buttonDel.Size = new System.Drawing.Size(126, 36);
+ this.buttonDel.TabIndex = 2;
+ this.buttonDel.Text = "Удалить";
+ this.buttonDel.UseVisualStyleBackColor = true;
+ this.buttonDel.Click += new System.EventHandler(this.ButtonDel_Click);
+ //
+ // buttonUpd
+ //
+ this.buttonUpd.Location = new System.Drawing.Point(31, 76);
+ this.buttonUpd.Name = "buttonUpd";
+ this.buttonUpd.Size = new System.Drawing.Size(126, 36);
+ this.buttonUpd.TabIndex = 1;
+ this.buttonUpd.Text = "Изменить";
+ this.buttonUpd.UseVisualStyleBackColor = true;
+ this.buttonUpd.Click += new System.EventHandler(this.ButtonUpd_Click);
+ //
+ // buttonAdd
+ //
+ this.buttonAdd.Location = new System.Drawing.Point(31, 16);
+ this.buttonAdd.Name = "buttonAdd";
+ this.buttonAdd.Size = new System.Drawing.Size(126, 36);
+ this.buttonAdd.TabIndex = 0;
+ this.buttonAdd.Text = "Добавить";
+ this.buttonAdd.UseVisualStyleBackColor = true;
+ this.buttonAdd.Click += new System.EventHandler(this.ButtonAdd_Click);
+ //
+ // dataGridView
+ //
+ this.dataGridView.AllowUserToAddRows = false;
+ this.dataGridView.AllowUserToDeleteRows = false;
+ this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.dataGridView.Location = new System.Drawing.Point(12, 12);
+ this.dataGridView.Name = "dataGridView";
+ this.dataGridView.ReadOnly = true;
+ this.dataGridView.RowHeadersWidth = 51;
+ this.dataGridView.RowTemplate.Height = 29;
+ this.dataGridView.Size = new System.Drawing.Size(590, 426);
+ this.dataGridView.TabIndex = 2;
+ //
+ // FormShops
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Controls.Add(this.ToolsPanel);
+ this.Controls.Add(this.dataGridView);
+ this.Name = "FormShops";
+ this.Text = "Магазины";
+ this.Load += new System.EventHandler(this.FormShops_Load);
+ this.ToolsPanel.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private Panel ToolsPanel;
+ private Button buttonRef;
+ private Button buttonDel;
+ private Button buttonUpd;
+ private Button buttonAdd;
+ private DataGridView dataGridView;
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompany/FormShops.cs b/TravelCompany/TravelCompany/FormShops.cs
new file mode 100644
index 0000000..8273dec
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormShops.cs
@@ -0,0 +1,117 @@
+using Microsoft.Extensions.Logging;
+using TravelCompany;
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.BusinessLogicsContracts;
+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 TravelCompanyView
+{
+ public partial class FormShops : Form
+ {
+ private readonly ILogger _logger;
+ private readonly IShopLogic _logic;
+
+ public FormShops(ILogger logger, IShopLogic logic)
+ {
+ InitializeComponent();
+ _logger = logger;
+ _logic = logic;
+ }
+
+ private void FormShops_Load(object sender, EventArgs e)
+ {
+ LoadData();
+ }
+
+ private void LoadData()
+ {
+ try
+ {
+ var list = _logic.ReadList(null);
+ if (list != null)
+ {
+ dataGridView.DataSource = list;
+ dataGridView.Columns["Id"].Visible = false;
+ dataGridView.Columns["ShopTravels"].Visible = false;
+ dataGridView.Columns["ShopName"].AutoSizeMode =
+ DataGridViewAutoSizeColumnMode.Fill;
+ }
+ _logger.LogInformation("Загрузка магазинов");
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Ошибка загрузки магазинов");
+ MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+
+ private void ButtonAdd_Click(object sender, EventArgs e)
+ {
+ var service = Program.ServiceProvider?.GetService(typeof(FormShop));
+ if (service is FormShop form)
+ {
+ if (form.ShowDialog() == DialogResult.OK)
+ {
+ LoadData();
+ }
+ }
+ }
+
+ private void ButtonUpd_Click(object sender, EventArgs e)
+ {
+ if (dataGridView.SelectedRows.Count == 1)
+ {
+ var service = Program.ServiceProvider?.GetService(typeof(FormShop));
+ if (service is FormShop form)
+ {
+ form.Id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
+ if (form.ShowDialog() == DialogResult.OK)
+ {
+ LoadData();
+ }
+ }
+ }
+ }
+
+ private void ButtonDel_Click(object sender, EventArgs e)
+ {
+ if (dataGridView.SelectedRows.Count == 1)
+ {
+ if (MessageBox.Show("Удалить запись?", "Вопрос", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
+ {
+ int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
+ _logger.LogInformation("Удаление магазина");
+ try
+ {
+ if (!_logic.Delete(new ShopBindingModel
+ {
+ Id = id
+ }))
+ {
+ throw new Exception("Ошибка при удалении. Дополнительная информация в логах.");
+ }
+ LoadData();
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Ошибка удаления магазина");
+ MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+ }
+ }
+
+ private void ButtonRef_Click(object sender, EventArgs e)
+ {
+ LoadData();
+ }
+ }
+}
diff --git a/TravelCompany/TravelCompany/FormShops.resx b/TravelCompany/TravelCompany/FormShops.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/TravelCompany/TravelCompany/FormShops.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/TravelCompany/TravelCompany/Program.cs b/TravelCompany/TravelCompany/Program.cs
index 80d41e4..64d4ace 100644
--- a/TravelCompany/TravelCompany/Program.cs
+++ b/TravelCompany/TravelCompany/Program.cs
@@ -6,6 +6,8 @@ using TravelCompanyListImplement.Implements;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
+using TravelCompanyView;
+using TravelCompanyBusinessLogic.BusinessLogics;
namespace TravelCompany
{
@@ -48,6 +50,11 @@ namespace TravelCompany
services.AddTransient();
services.AddTransient();
services.AddTransient();
+ services.AddTransient();
+ services.AddTransient();
+ services.AddTransient();
+ services.AddTransient();
+ services.AddTransient();
}
}
}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompany/Properties/Resources.Designer.cs b/TravelCompany/TravelCompany/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..14dbbc1
--- /dev/null
+++ b/TravelCompany/TravelCompany/Properties/Resources.Designer.cs
@@ -0,0 +1,63 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+namespace TravelCompanyView.Properties {
+ using System;
+
+
+ ///
+ /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
+ ///
+ // Этот класс создан автоматически классом StronglyTypedResourceBuilder
+ // с помощью такого средства, как ResGen или Visual Studio.
+ // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
+ // с параметром /str или перестройте свой проект VS.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TravelCompanyView.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Перезаписывает свойство CurrentUICulture текущего потока для всех
+ /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/TravelCompany/TravelCompany/Properties/Resources.resx b/TravelCompany/TravelCompany/Properties/Resources.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/TravelCompany/TravelCompany/Properties/Resources.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/TravelCompany/TravelCompany/TravelCompanyView.csproj b/TravelCompany/TravelCompany/TravelCompanyView.csproj
index 8612256..f1ce2a6 100644
--- a/TravelCompany/TravelCompany/TravelCompanyView.csproj
+++ b/TravelCompany/TravelCompany/TravelCompanyView.csproj
@@ -23,4 +23,19 @@
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyBusinessLogic/BusinessLogic/ShopLogic.cs b/TravelCompany/TravelCompanyBusinessLogic/BusinessLogic/ShopLogic.cs
new file mode 100644
index 0000000..a108f7f
--- /dev/null
+++ b/TravelCompany/TravelCompanyBusinessLogic/BusinessLogic/ShopLogic.cs
@@ -0,0 +1,160 @@
+using Microsoft.Extensions.Logging;
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.BusinessLogicsContracts;
+using TravelCompanyContracts.SearchModels;
+using TravelCompanyContracts.StoragesContracts;
+using TravelCompanyContracts.ViewModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyBusinessLogic.BusinessLogics
+{
+ public class ShopLogic : IShopLogic
+ {
+ private readonly ILogger _logger;
+ private readonly IShopStorage _shopStorage;
+ private readonly ITravelStorage _TravelStorage;
+
+ public ShopLogic(ILogger logger, IShopStorage shopStorage, ITravelStorage TravelStorage)
+ {
+ _logger = logger;
+ _shopStorage = shopStorage;
+ _TravelStorage = TravelStorage;
+ }
+
+ public List? ReadList(ShopSearchModel? model)
+ {
+ _logger.LogInformation("ReadList. ShopName:{ShopName}.Id:{ Id}", model?.ShopName, model?.Id);
+ var list = model == null ? _shopStorage.GetFullList() : _shopStorage.GetFilteredList(model);
+ if (list == null)
+ {
+ _logger.LogWarning("ReadList return null list");
+ return null;
+ }
+ _logger.LogInformation("ReadList. Count:{Count}", list.Count);
+ return list;
+ }
+
+ public ShopViewModel? ReadElement(ShopSearchModel model)
+ {
+ if (model == null)
+ {
+ throw new ArgumentNullException(nameof(model));
+ }
+ _logger.LogInformation("ReadElement. ShopName:{ShopName}.Id:{ Id}", model.ShopName, model.Id);
+ var element = _shopStorage.GetElement(model);
+ if (element == null)
+ {
+ _logger.LogWarning("ReadElement element not found");
+ return null;
+ }
+ _logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
+ return element;
+ }
+
+ public bool Create(ShopBindingModel model)
+ {
+ CheckModel(model);
+ if (_shopStorage.Insert(model) == null)
+ {
+ _logger.LogWarning("Insert operation failed");
+ return false;
+ }
+ return true;
+ }
+
+ public bool Update(ShopBindingModel model)
+ {
+ CheckModel(model);
+ if (_shopStorage.Update(model) == null)
+ {
+ _logger.LogWarning("Update operation failed");
+ return false;
+ }
+ return true;
+ }
+
+ public bool Delete(ShopBindingModel model)
+ {
+ CheckModel(model, false);
+ _logger.LogInformation("Delete. Id:{Id}", model.Id);
+ if (_shopStorage.Delete(model) == null)
+ {
+ _logger.LogWarning("Delete operation failed");
+ return false;
+ }
+ return true;
+ }
+
+ public bool MakeSupply(SupplyBindingModel model)
+ {
+ if (model == null)
+ {
+ throw new ArgumentNullException(nameof(model));
+ }
+ if (model.Count <= 0)
+ {
+ throw new ArgumentException("Количество изделий должно быть больше 0");
+ }
+ var shop = _shopStorage.GetElement(new ShopSearchModel
+ {
+ Id = model.ShopId
+ });
+ if (shop == null)
+ {
+ throw new ArgumentException("Магазина не существует");
+ }
+ if (shop.ShopTravels.ContainsKey(model.TravelId))
+ {
+ var oldValue = shop.ShopTravels[model.TravelId];
+ oldValue.Item2 += model.Count;
+ shop.ShopTravels[model.TravelId] = oldValue;
+ }
+ else
+ {
+ var Travel = _TravelStorage.GetElement(new TravelSearchModel
+ {
+ Id = model.TravelId
+ });
+ if (Travel == null)
+ {
+ throw new ArgumentException($"Поставка: Товар с id:{model.TravelId} не найденн");
+ }
+ shop.ShopTravels.Add(model.TravelId, (Travel, model.Count));
+ }
+ return true;
+ }
+
+ private void CheckModel(ShopBindingModel model, bool withParams = true)
+ {
+ if (model == null)
+ {
+ throw new ArgumentNullException(nameof(model));
+ }
+ if (!withParams)
+ {
+ return;
+ }
+ if (string.IsNullOrEmpty(model.Adress))
+ {
+ throw new ArgumentException("Адрес магазина длжен быть заполнен", nameof(model.Adress));
+ }
+ if (string.IsNullOrEmpty(model.ShopName))
+ {
+ throw new ArgumentException("Название магазина должно быть заполнено", nameof(model.ShopName));
+ }
+ _logger.LogInformation("Shop. ShopName:{ShopName}.Adres:{Adres}.OpeningDate:{OpeningDate}.Id:{ Id}", model.ShopName, model.Adress, model.OpeningDate, model.Id);
+ var element = _shopStorage.GetElement(new ShopSearchModel
+ {
+ ShopName = model.ShopName
+ });
+ if (element != null && element.Id != model.Id)
+ {
+ throw new InvalidOperationException("Магазин с таким названием уже есть");
+ }
+ }
+ }
+}
diff --git a/TravelCompany/TravelCompanyContracts/BindingModels/ShopBindingModel.cs b/TravelCompany/TravelCompanyContracts/BindingModels/ShopBindingModel.cs
new file mode 100644
index 0000000..5aa7d33
--- /dev/null
+++ b/TravelCompany/TravelCompanyContracts/BindingModels/ShopBindingModel.cs
@@ -0,0 +1,18 @@
+using TravelCompanyDataModels.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyContracts.BindingModels
+{
+ public class ShopBindingModel : IShopModel
+ {
+ public int Id { get; set; }
+ public string ShopName { get; set; } = string.Empty;
+ public string Adress { get; set; } = string.Empty;
+ public DateTime OpeningDate { get; set; } = DateTime.Now;
+ public Dictionary ShopTravels { get; set; } = new();
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyContracts/BindingModels/SupplyBindingModel.cs b/TravelCompany/TravelCompanyContracts/BindingModels/SupplyBindingModel.cs
new file mode 100644
index 0000000..52ff0c1
--- /dev/null
+++ b/TravelCompany/TravelCompanyContracts/BindingModels/SupplyBindingModel.cs
@@ -0,0 +1,16 @@
+using TravelCompanyDataModels.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyContracts.BindingModels
+{
+ public class SupplyBindingModel : ISupplyModel
+ {
+ public int ShopId { get; set; }
+ public int TravelId { get; set; }
+ public int Count { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyContracts/BusinessLogicsContracts/IShopLogic.cs b/TravelCompany/TravelCompanyContracts/BusinessLogicsContracts/IShopLogic.cs
new file mode 100644
index 0000000..9242c6a
--- /dev/null
+++ b/TravelCompany/TravelCompanyContracts/BusinessLogicsContracts/IShopLogic.cs
@@ -0,0 +1,21 @@
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.SearchModels;
+using TravelCompanyContracts.ViewModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyContracts.BusinessLogicsContracts
+{
+ public interface IShopLogic
+ {
+ List? ReadList(ShopSearchModel? model);
+ ShopViewModel? ReadElement(ShopSearchModel model);
+ bool Create(ShopBindingModel model);
+ bool Update(ShopBindingModel model);
+ bool Delete(ShopBindingModel model);
+ bool MakeSupply(SupplyBindingModel model);
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyContracts/SearchModels/ShopSearchModel.cs b/TravelCompany/TravelCompanyContracts/SearchModels/ShopSearchModel.cs
new file mode 100644
index 0000000..61660af
--- /dev/null
+++ b/TravelCompany/TravelCompanyContracts/SearchModels/ShopSearchModel.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyContracts.SearchModels
+{
+ public class ShopSearchModel
+ {
+ public int? Id { get; set; }
+ public string? ShopName { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyContracts/StoragesContracts/IShopStorage.cs b/TravelCompany/TravelCompanyContracts/StoragesContracts/IShopStorage.cs
new file mode 100644
index 0000000..45f3171
--- /dev/null
+++ b/TravelCompany/TravelCompanyContracts/StoragesContracts/IShopStorage.cs
@@ -0,0 +1,21 @@
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.SearchModels;
+using TravelCompanyContracts.ViewModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyContracts.StoragesContracts
+{
+ public interface IShopStorage
+ {
+ List GetFullList();
+ List GetFilteredList(ShopSearchModel model);
+ ShopViewModel? GetElement(ShopSearchModel model);
+ ShopViewModel? Insert(ShopBindingModel model);
+ ShopViewModel? Update(ShopBindingModel model);
+ ShopViewModel? Delete(ShopBindingModel model);
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyContracts/ViewModels/ShopViewModel.cs b/TravelCompany/TravelCompanyContracts/ViewModels/ShopViewModel.cs
new file mode 100644
index 0000000..2a9e470
--- /dev/null
+++ b/TravelCompany/TravelCompanyContracts/ViewModels/ShopViewModel.cs
@@ -0,0 +1,22 @@
+using TravelCompanyDataModels.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyContracts.ViewModels
+{
+ public class ShopViewModel : IShopModel
+ {
+ public int Id { get; set; }
+ [DisplayName("Название")]
+ public string ShopName { get; set; } = string.Empty;
+ [DisplayName("Адрес")]
+ public string Adress { get; set; } = string.Empty;
+ [DisplayName("Дата открытия")]
+ public DateTime OpeningDate { get; set; }
+ public Dictionary ShopTravels { get; set; } = new();
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyDataModels/Models/IShopModel.cs b/TravelCompany/TravelCompanyDataModels/Models/IShopModel.cs
new file mode 100644
index 0000000..c1f0584
--- /dev/null
+++ b/TravelCompany/TravelCompanyDataModels/Models/IShopModel.cs
@@ -0,0 +1,18 @@
+using TravelCompanyDataModels;
+using TravelCompanyDataModels.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyDataModels.Models
+{
+ public interface IShopModel : IId
+ {
+ string ShopName { get; }
+ string Adress { get; }
+ DateTime OpeningDate { get; }
+ Dictionary ShopTravels { get; }
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyDataModels/Models/ISupplyModel.cs b/TravelCompany/TravelCompanyDataModels/Models/ISupplyModel.cs
new file mode 100644
index 0000000..907597a
--- /dev/null
+++ b/TravelCompany/TravelCompanyDataModels/Models/ISupplyModel.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyDataModels.Models
+{
+ public interface ISupplyModel
+ {
+ int ShopId { get; }
+ int TravelId { get; }
+ int Count { get; }
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyListImplement/DataListSingleton.cs b/TravelCompany/TravelCompanyListImplement/DataListSingleton.cs
index 01817fb..abb62c6 100644
--- a/TravelCompany/TravelCompanyListImplement/DataListSingleton.cs
+++ b/TravelCompany/TravelCompanyListImplement/DataListSingleton.cs
@@ -13,11 +13,13 @@ namespace TravelCompanyListImplement
public List Components { get; set; }
public List Orders { get; set; }
public List Travels { get; set; }
+ public List Shops { get; set; }
private DataListSingleton()
{
Components = new List();
Orders = new List();
Travels = new List();
+ Shops = new List();
}
public static DataListSingleton GetInstance()
{
diff --git a/TravelCompany/TravelCompanyListImplement/Implements/ShopStorage.cs b/TravelCompany/TravelCompanyListImplement/Implements/ShopStorage.cs
new file mode 100644
index 0000000..cd4cd08
--- /dev/null
+++ b/TravelCompany/TravelCompanyListImplement/Implements/ShopStorage.cs
@@ -0,0 +1,113 @@
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.SearchModels;
+using TravelCompanyContracts.StoragesContracts;
+using TravelCompanyContracts.ViewModels;
+using TravelCompanyListImplement.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyListImplement.Implements
+{
+ public class ShopStorage : IShopStorage
+ {
+ private readonly DataListSingleton _source;
+
+ public ShopStorage()
+ {
+ _source = DataListSingleton.GetInstance();
+ }
+
+ public List GetFullList()
+ {
+ var result = new List();
+ foreach (var shop in _source.Shops)
+ {
+ result.Add(shop.GetViewModel);
+ }
+ return result;
+ }
+
+ public List GetFilteredList(ShopSearchModel model)
+ {
+ var result = new List();
+ if (string.IsNullOrEmpty(model.ShopName))
+ {
+ return result;
+ }
+ foreach (var shop in _source.Shops)
+ {
+ if (shop.ShopName.Contains(model.ShopName))
+ {
+ result.Add(shop.GetViewModel);
+ }
+ }
+ return result;
+ }
+
+ public ShopViewModel? GetElement(ShopSearchModel model)
+ {
+ if (string.IsNullOrEmpty(model.ShopName) && !model.Id.HasValue)
+ {
+ return null;
+ }
+ foreach (var shop in _source.Shops)
+ {
+ if ((!string.IsNullOrEmpty(model.ShopName) && shop.ShopName == model.ShopName) ||
+ (model.Id.HasValue && shop.Id == model.Id))
+ {
+ return shop.GetViewModel;
+ }
+ }
+ return null;
+ }
+
+ public ShopViewModel? Insert(ShopBindingModel model)
+ {
+ model.Id = 1;
+ foreach (var shop in _source.Shops)
+ {
+ if (model.Id <= shop.Id)
+ {
+ model.Id = shop.Id + 1;
+ }
+ }
+ var newShop = Shop.Create(model);
+ if (newShop == null)
+ {
+ return null;
+ }
+ _source.Shops.Add(newShop);
+ return newShop.GetViewModel;
+ }
+
+ public ShopViewModel? Update(ShopBindingModel model)
+ {
+ foreach (var shop in _source.Shops)
+ {
+ if (shop.Id == model.Id)
+ {
+ shop.Update(model);
+ return shop.GetViewModel;
+ }
+ }
+ return null;
+ }
+
+ public ShopViewModel? Delete(ShopBindingModel model)
+ {
+ for (int i = 0; i < _source.Shops.Count; ++i)
+ {
+ if (_source.Shops[i].Id == model.Id)
+ {
+ var element = _source.Shops[i];
+ _source.Shops.RemoveAt(i);
+ return element.GetViewModel;
+ }
+ }
+ return null;
+ }
+ }
+}
\ No newline at end of file
diff --git a/TravelCompany/TravelCompanyListImplement/Models/Shop.cs b/TravelCompany/TravelCompanyListImplement/Models/Shop.cs
new file mode 100644
index 0000000..9fc368e
--- /dev/null
+++ b/TravelCompany/TravelCompanyListImplement/Models/Shop.cs
@@ -0,0 +1,55 @@
+using TravelCompanyDataModels.Models;
+using TravelCompanyContracts.BindingModels;
+using TravelCompanyContracts.ViewModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TravelCompanyListImplement.Models
+{
+ public class Shop : IShopModel
+ {
+ public int Id { get; private set; }
+ public string ShopName { get; private set; } = string.Empty;
+ public string Adress { get; private set; } = string.Empty;
+ public DateTime OpeningDate { get; private set; }
+ public Dictionary ShopTravels { get; private set; } = new();
+
+ public static Shop? Create(ShopBindingModel? model)
+ {
+ if (model == null)
+ {
+ return null;
+ }
+ return new Shop()
+ {
+ Id = model.Id,
+ ShopName = model.ShopName,
+ Adress = model.Adress,
+ OpeningDate = model.OpeningDate
+ };
+ }
+
+ public void Update(ShopBindingModel? model)
+ {
+ if (model == null)
+ {
+ return;
+ }
+ ShopName = model.ShopName;
+ Adress = model.Adress;
+ OpeningDate = model.OpeningDate;
+ }
+
+ public ShopViewModel GetViewModel => new()
+ {
+ Id = Id,
+ ShopName = ShopName,
+ Adress = Adress,
+ OpeningDate = OpeningDate,
+ ShopTravels = ShopTravels
+ };
+ }
+}
\ No newline at end of file