diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/BindingModels/BackUpSaveBinidngModel.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/BindingModels/BackUpSaveBinidngModel.cs
index df0ac4c..01c9bd9 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/BindingModels/BackUpSaveBinidngModel.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/BindingModels/BackUpSaveBinidngModel.cs
@@ -10,5 +10,4 @@ namespace BlacksmithWorkshopContracts.BindingModels
{
public string FolderName { get; set; } = string.Empty;
}
-
}
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/BlacksmithWorkshopContracts.csproj b/BlacksmithWorkshop/BlacksmithWorkshopContracts/BlacksmithWorkshopContracts.csproj
index 9e282a5..2216d57 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/BlacksmithWorkshopContracts.csproj
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/BlacksmithWorkshopContracts.csproj
@@ -8,6 +8,8 @@
+
+
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/BusinessLogicsContracts/IBackUpLogic.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/BusinessLogicsContracts/IBackUpLogic.cs
index 7c3cb90..0b66910 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/BusinessLogicsContracts/IBackUpLogic.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/BusinessLogicsContracts/IBackUpLogic.cs
@@ -13,5 +13,4 @@ namespace BlacksmithWorkshopContracts.BusinessLogicsContracts
//путь и имя файла для архивации
void CreateBackUp(BackUpSaveBinidngModel model);
}
-
}
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/DI/DependencyManager.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/DI/DependencyManager.cs
index 2335d5e..a8837bb 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/DI/DependencyManager.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/DI/DependencyManager.cs
@@ -20,7 +20,7 @@ namespace BlacksmithWorkshopContracts.DI
private DependencyManager()
{
- _dependencyManager = new ServiceDependencyContainer();
+ _dependencyManager = new UnityDependencyContainer();
}
public static DependencyManager Instance
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/DI/UnityDependencyContainer.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/DI/UnityDependencyContainer.cs
new file mode 100644
index 0000000..2ba045b
--- /dev/null
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/DI/UnityDependencyContainer.cs
@@ -0,0 +1,43 @@
+using Microsoft.Extensions.Logging;
+using Unity.Microsoft.Logging;
+using Unity;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BlacksmithWorkshopContracts.DI
+{
+ public class UnityDependencyContainer : IDependencyContainer
+ {
+ private readonly IUnityContainer _container;
+
+ public UnityDependencyContainer()
+ {
+ _container = new UnityContainer();
+ }
+
+ public void AddLogging(Action configure)
+ {
+ var factory = LoggerFactory.Create(configure);
+ _container.AddExtension(new LoggingExtension(factory));
+ }
+
+ public void RegisterType(bool isSingle) where T : class
+ {
+ _container.RegisterType(isSingle ? TypeLifetime.Singleton : TypeLifetime.Transient);
+
+ }
+
+ public T Resolve()
+ {
+ return _container.Resolve();
+ }
+
+ void IDependencyContainer.RegisterType(bool isSingle)
+ {
+ _container.RegisterType(isSingle ? TypeLifetime.Singleton : TypeLifetime.Transient);
+ }
+ }
+}
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ImplementerViewModel.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ImplementerViewModel.cs
index 2554098..73c74b8 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ImplementerViewModel.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ImplementerViewModel.cs
@@ -1,4 +1,5 @@
-using BlacksmithWorkshopDataModels.Models;
+using BlacksmithWorkshopContracts.Attributes;
+using BlacksmithWorkshopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -10,18 +11,19 @@ namespace BlacksmithWorkshopContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
- public int Id { get; set; }
+ [Column(visible: false)]
+ public int Id { get; set; }
- [DisplayName("ФИО исполнителя")]
+ [Column(title: "ФИО исполнителя", width: 150)]
public string ImplementerFIO { get; set; } = string.Empty;
- [DisplayName("Пароль")]
- public string Password { get; set; } = string.Empty;
+ [Column(title: "Пароль", width: 150)]
+ public string Password { get; set; } = string.Empty;
- [DisplayName("Стаж")]
- public int WorkExperience { get; set; }
+ [Column(title: "Стаж", width: 150)]
+ public int WorkExperience { get; set; }
- [DisplayName("Квалификация")]
- public int Qualification { get; set; }
+ [Column(title: "Квалификация", width: 150)]
+ public int Qualification { get; set; }
}
}
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ManufactureViewModel.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ManufactureViewModel.cs
index 6dca595..c8ccd7f 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ManufactureViewModel.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/ManufactureViewModel.cs
@@ -1,4 +1,5 @@
-using BlacksmithWorkshopDataModels.Models;
+using BlacksmithWorkshopContracts.Attributes;
+using BlacksmithWorkshopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -11,14 +12,16 @@ namespace BlacksmithWorkshopContracts.ViewModels
//класс для отображения пользователю информаци о продуктах (изделиях)
public class ManufactureViewModel : IManufactureModel
{
+ [Column(visible: false)]
public int Id { get; set; }
- [DisplayName("Навание изделия")]
+ [Column(title: "Навание изделия", width: 150)]
public string ManufactureName { get; set; } = string.Empty;
- [DisplayName("Цена")]
+ [Column(title: "Цена", width: 150)]
public double Price { get; set; }
+ [Column(visible: false)]
public Dictionary ManufactureWorkPieces { get; set; } = new();
}
}
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/MessageInfoViewModel.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/MessageInfoViewModel.cs
index 8a9a2a1..e487f07 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/MessageInfoViewModel.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/MessageInfoViewModel.cs
@@ -1,4 +1,5 @@
-using BlacksmithWorkshopDataModels.Models;
+using BlacksmithWorkshopContracts.Attributes;
+using BlacksmithWorkshopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -10,22 +11,25 @@ namespace BlacksmithWorkshopContracts.ViewModels
{
public class MessageInfoViewModel : IMessageInfoModel
{
+ [Column(visible: false)]
public int Id { get; set; }
+ [Column(visible: false)]
public string MessageId { get; set; } = string.Empty;
+ [Column(visible: false)]
public int? ClientId { get; set; }
- [DisplayName("Отправитель")]
+ [Column(title: "Отправитель", width: 150)]
public string SenderName { get; set; } = string.Empty;
- [DisplayName("Дата отправки")]
+ [Column(title: "Дата отправки", width: 150)]
public DateTime DateDelivery { get; set; } = DateTime.Now;
- [DisplayName("Заголовок")]
+ [Column(title: "Заголовок", width: 150)]
public string Subject { get; set; } = string.Empty;
- [DisplayName("Текст")]
- public string Body { get; set; } = string.Empty;
+ [Column(title: "Текст", width: 150)]
+ public string Body { get; set; } = string.Empty;
}
}
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/OrderViewModel.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/OrderViewModel.cs
index b550429..094f1f0 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/OrderViewModel.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/OrderViewModel.cs
@@ -1,4 +1,5 @@
-using BlacksmithWorkshopDataModels.Enums;
+using BlacksmithWorkshopContracts.Attributes;
+using BlacksmithWorkshopDataModels.Enums;
using BlacksmithWorkshopDataModels.Models;
using System;
using System.Collections.Generic;
@@ -12,37 +13,40 @@ namespace BlacksmithWorkshopContracts.ViewModels
//класс для отображения пользователю информации о заказах
public class OrderViewModel : IOrderModel
{
- [DisplayName("Номер")]
+ [Column(visible: false)]
public int Id { get; set; }
- public int ClientId { get; set; }
+ [Column(visible: false)]
+ public int ClientId { get; set; }
- public int? ImplementerId { get; set; }
+ [Column(visible: false)]
+ public int? ImplementerId { get; set; }
- public int ManufactureId { get; set; }
+ [Column(visible: false)]
+ public int ManufactureId { get; set; }
- [DisplayName("ФИО клиента")]
+ [Column(title: "ФИО клиента", width: 150)]
public string ClientFIO { get; set; } = string.Empty;
- [DisplayName("Изделие")]
+ [Column(title: "Изделие", width: 150)]
public string ManufactureName { get; set; } = string.Empty;
- [DisplayName("ФИО исполнителя")]
+ [Column(title: "ФИО исполнителя", width: 150)]
public string ImplementerFIO { get; set; } = string.Empty;
- [DisplayName("Количество")]
+ [Column(title: "Количество", width: 150)]
public int Count { get; set; }
- [DisplayName("Сумма")]
+ [Column(title: "Сумма", width: 150)]
public double Sum { get; set; }
- [DisplayName("Статус")]
+ [Column(title: "Статус", width: 150)]
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
- [DisplayName("Дата создания")]
+ [Column(title: "Дата создания", width: 150)]
public DateTime DateCreate { get; set; } = DateTime.Now;
- [DisplayName("Дата выполнения")]
+ [Column(title: "Дата выполнения", width: 150)]
public DateTime? DateImplement { get; set; }
}
}
diff --git a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/WorkPieceViewModel.cs b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/WorkPieceViewModel.cs
index c04bcdc..690f8ea 100644
--- a/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/WorkPieceViewModel.cs
+++ b/BlacksmithWorkshop/BlacksmithWorkshopContracts/ViewModels/WorkPieceViewModel.cs
@@ -5,18 +5,20 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using BlacksmithWorkshopContracts.Attributes;
namespace BlacksmithWorkshopContracts.ViewModels
{
//класс для отображения пользователю данных о заготовких (заготовках)
public class WorkPieceViewModel : IWorkPieceModel
{
+ [Column(visible: false)]
public int Id { get; set; }
- [DisplayName("Название заготовки")]
+ [Column(title: "Название заготовки", width: 150)]
public string WorkPieceName { get; set; } = string.Empty;
- [DisplayName("Цена")]
+ [Column(title: "Цена", width: 150)]
public double Cost { get; set; }
}
}