Compare commits

...

3 Commits

Author SHA1 Message Date
c44b2183fb готовая лаба 2 хард 2024-04-15 17:10:01 +04:00
d18c43ff71 Merge branch 'laba2_base' into laba2_hard 2024-04-10 19:18:35 +04:00
0fe51306ed Готовая 2 лаба 2024-03-11 01:04:25 +04:00
30 changed files with 2085 additions and 732 deletions

View File

@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GarmentFactoryDataModels",
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GarmentFactoryListImplement", "GarmentFactoryListImplement\GarmentFactoryListImplement.csproj", "{AA691567-80A9-45EF-9916-C55FA3B53C47}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GarmentFactoryListImplement", "GarmentFactoryListImplement\GarmentFactoryListImplement.csproj", "{AA691567-80A9-45EF-9916-C55FA3B53C47}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GarmentFactoryFileImplement", "GarmentFactoryFileImplement\GarmentFactoryFileImplement.csproj", "{281A8DE2-A45A-4B4B-B4A6-DC13ECC0144E}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -39,6 +41,10 @@ Global
{AA691567-80A9-45EF-9916-C55FA3B53C47}.Debug|Any CPU.Build.0 = Debug|Any CPU {AA691567-80A9-45EF-9916-C55FA3B53C47}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AA691567-80A9-45EF-9916-C55FA3B53C47}.Release|Any CPU.ActiveCfg = Release|Any CPU {AA691567-80A9-45EF-9916-C55FA3B53C47}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AA691567-80A9-45EF-9916-C55FA3B53C47}.Release|Any CPU.Build.0 = Release|Any CPU {AA691567-80A9-45EF-9916-C55FA3B53C47}.Release|Any CPU.Build.0 = Release|Any CPU
{281A8DE2-A45A-4B4B-B4A6-DC13ECC0144E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{281A8DE2-A45A-4B4B-B4A6-DC13ECC0144E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{281A8DE2-A45A-4B4B-B4A6-DC13ECC0144E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{281A8DE2-A45A-4B4B-B4A6-DC13ECC0144E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

View File

@ -18,12 +18,17 @@ namespace GarmentFactoryBusinessLogic.BusinessLogics
private readonly ILogger _logger; private readonly ILogger _logger;
private readonly IOrderStorage _orderStorage; private readonly IOrderStorage _orderStorage;
private readonly IShopLogic _shopLogic;
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage) private readonly ITextileStorage _textileStorage;
public OrderLogic(ILogger<OrderLogic> logger, IOrderStorage orderStorage, IShopLogic shopLogic, ITextileStorage textileStorage)
{ {
_logger = logger; _logger = logger;
_orderStorage = orderStorage; _orderStorage = orderStorage;
} _shopLogic = shopLogic;
_textileStorage = textileStorage;
}
public bool CreateOrder(OrderBindingModel model) public bool CreateOrder(OrderBindingModel model)
{ {
@ -111,11 +116,21 @@ namespace GarmentFactoryBusinessLogic.BusinessLogics
newStatus, order.Status); newStatus, order.Status);
return false; return false;
} }
model.TextileId = order.TextileId; if (newStatus == OrderStatus.Выдан)
model.Count = order.Count; {
model.Sum = order.Sum; var textile = _textileStorage.GetElement(new() { Id = order.TextileId });
model.DateCreate = order.DateCreate; if (textile == null)
model.Status = newStatus; {
_logger.LogWarning("Change status operation failed. Textile not found");
return false;
}
if (!_shopLogic.DeliverTextiles(textile, order.Count))
{
_logger.LogWarning("Change status operation failed. Textiles delivery operation failed");
return false;
}
}
model.Status = newStatus;
if (model.Status == OrderStatus.Готов) if (model.Status == OrderStatus.Готов)
{ {
model.DateImplement = DateTime.Now; model.DateImplement = DateTime.Now;

View File

@ -106,7 +106,12 @@ namespace GarmentFactoryBusinessLogic.BusinessLogics
_logger.LogWarning("MakeDelivery(GetElement). Element not found"); _logger.LogWarning("MakeDelivery(GetElement). Element not found");
return false; return false;
} }
if (shop.ShopTextiles.ContainsKey(textile.Id)) if (shop.TextilesMaximum - shop.ShopTextiles.Sum(x => x.Value.Item2) < count)
{
_logger.LogWarning("MakeShipment error. No space for new textiles");
return false;
}
if (shop.ShopTextiles.ContainsKey(textile.Id))
{ {
var shopT = shop.ShopTextiles[textile.Id]; var shopT = shop.ShopTextiles[textile.Id];
shopT.Item2 += count; shopT.Item2 += count;
@ -126,7 +131,8 @@ namespace GarmentFactoryBusinessLogic.BusinessLogics
ShopName = shop.ShopName, ShopName = shop.ShopName,
Address = shop.Address, Address = shop.Address,
DateOpening = shop.DateOpening, DateOpening = shop.DateOpening,
ShopTextiles = shop.ShopTextiles, TextilesMaximum = shop.TextilesMaximum,
ShopTextiles = shop.ShopTextiles,
}) == null) }) == null)
{ {
_logger.LogWarning("MakeDelivery. Update operation failed"); _logger.LogWarning("MakeDelivery. Update operation failed");
@ -134,8 +140,11 @@ namespace GarmentFactoryBusinessLogic.BusinessLogics
} }
return true; return true;
} }
public bool MakeSale(ITextileModel model, int count)
private void CheckModel(ShopBindingModel model, bool withParams = true) {
return _shopStorage.MakeSale(model, count);
}
private void CheckModel(ShopBindingModel model, bool withParams = true)
{ {
if (model == null) if (model == null)
{ {
@ -163,5 +172,62 @@ namespace GarmentFactoryBusinessLogic.BusinessLogics
throw new InvalidOperationException("Магазин с таким названием уже есть"); throw new InvalidOperationException("Магазин с таким названием уже есть");
} }
} }
} public bool DeliverTextiles(ITextileModel textile, int count)
{
if (count <= 0)
{
_logger.LogWarning("Textiles delivery operation failed. Textile count <= 0");
return false;
}
var shopList = _shopStorage.GetFullList();
int shopsCapacity = shopList.Sum(x => x.TextilesMaximum);
int currentTextiles = shopList.Select(x => x.ShopTextiles.Sum(y => y.Value.Item2)).Sum();
int freePlaces = shopsCapacity - currentTextiles;
if (freePlaces < count)
{
_logger.LogWarning("Textiles delivery operation failed. No space for new textiles");
return false;
}
foreach (var shop in shopList)
{
freePlaces = shop.TextilesMaximum - shop.ShopTextiles.Sum(x => x.Value.Item2);
if (freePlaces == 0)
{
continue;
}
if (freePlaces >= count)
{
if (MakeDelivery(new() { Id = shop.Id }, textile, count))
{
count = 0;
}
else
{
_logger.LogWarning("Textiles delivery operation failed");
return false;
}
}
else
{
if (MakeDelivery(new() { Id = shop.Id }, textile, freePlaces))
{
count -= freePlaces;
}
else
{
_logger.LogWarning("Textiles delivery operation failed");
return false;
}
}
if (count == 0)
{
return true;
}
}
return false;
}
}
} }

View File

@ -22,5 +22,6 @@ namespace GarmentFactoryContracts.BindingModels
get; get;
set; set;
} = new(); } = new();
} public int TextilesMaximum { get; set; }
}
} }

View File

@ -22,5 +22,7 @@ namespace GarmentFactoryContracts.BusinessLogicsContracts
bool Delete(ShopBindingModel model); bool Delete(ShopBindingModel model);
bool MakeDelivery(ShopSearchModel shopModel, ITextileModel textile, int count); bool MakeDelivery(ShopSearchModel shopModel, ITextileModel textile, int count);
} bool MakeSale(ITextileModel model, int count);
bool DeliverTextiles(ITextileModel model, int count);
}
} }

View File

@ -6,6 +6,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using GarmentFactoryContracts.ViewModels; using GarmentFactoryContracts.ViewModels;
using GarmentFactoryDataModels.Models;
namespace GarmentFactoryContracts.StoragesContracts namespace GarmentFactoryContracts.StoragesContracts
{ {
@ -22,5 +23,6 @@ namespace GarmentFactoryContracts.StoragesContracts
ShopViewModel? Update(ShopBindingModel model); ShopViewModel? Update(ShopBindingModel model);
ShopViewModel? Delete(ShopBindingModel model); ShopViewModel? Delete(ShopBindingModel model);
} bool MakeSale(ITextileModel model, int count);
}
} }

View File

@ -26,5 +26,8 @@ namespace GarmentFactoryContracts.ViewModels
get; get;
set; set;
} = new(); } = new();
}
[DisplayName("Максимальное количество изделий")]
public int TextilesMaximum { get; set; }
}
} }

View File

@ -15,5 +15,6 @@ namespace GarmentFactoryDataModels.Models
DateTime DateOpening { get; } DateTime DateOpening { get; }
Dictionary<int, (ITextileModel, int)> ShopTextiles { get; } Dictionary<int, (ITextileModel, int)> ShopTextiles { get; }
} int TextilesMaximum { get; }
}
} }

View File

@ -0,0 +1,60 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GarmentFactoryFileImplement.Models;
using System.Xml.Linq;
namespace GarmentFactoryFileImplement
{
internal class DataFileSingleton
{
private static DataFileSingleton? instance;
private readonly string ComponentFileName = "Component.xml";
private readonly string OrderFileName = "Order.xml";
private readonly string TextileFileName = "Textile.xml";
private readonly string ShopFileName = "Shop.xml";
public List<Component> Components { get; private set; }
public List<Order> Orders { get; private set; }
public List<Textile> Textiles { get; private set; }
public List<Shop> Shops { get; private set; }
public static DataFileSingleton GetInstance()
{
if (instance == null)
{
instance = new DataFileSingleton();
}
return instance;
}
public void SaveComponents() => SaveData(Components, ComponentFileName, "Components", x => x.GetXElement);
public void SaveTextiles() => SaveData(Textiles, TextileFileName, "Textiles", x => x.GetXElement);
public void SaveOrders() => SaveData(Orders, OrderFileName, "Orders", x => x.GetXElement);
public void SaveShops() => SaveData(Shops, ShopFileName, "Shops", x => x.GetXElement);
private DataFileSingleton()
{
Components = LoadData(ComponentFileName, "Component", x => Component.Create(x)!)!;
Textiles = LoadData(TextileFileName, "Textile", x => Textile.Create(x)!)!;
Orders = LoadData(OrderFileName, "Order", x => Order.Create(x)!)!;
Shops = LoadData(ShopFileName, "Shop", x => Shop.Create(x)!)!;
}
private static List<T>? LoadData<T>(string filename, string xmlNodeName,
Func<XElement, T> selectFunction)
{
if (File.Exists(filename))
{
return
XDocument.Load(filename)?.Root?.Elements(xmlNodeName)?.Select(selectFunction)?.ToList();
}
return new List<T>();
}
private static void SaveData<T>(List<T> data, string filename, string
xmlNodeName, Func<T, XElement> selectFunction)
{
if (data != null)
{
new XDocument(new XElement(xmlNodeName, data.Select(selectFunction).ToArray())).Save(filename);
}
}
}
}

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\GarmentFactoryContracts\GarmentFactoryContracts.csproj" />
<ProjectReference Include="..\GarmentFactoryDataModels\GarmentFactoryDataModels.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,84 @@
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryContracts.SearchModels;
using GarmentFactoryContracts.StoragesContracts;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryFileImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryFileImplement.Implements
{
public class ComponentStorage : IComponentStorage
{
private readonly DataFileSingleton source;
public ComponentStorage()
{
source = DataFileSingleton.GetInstance();
}
public List<ComponentViewModel> GetFullList()
{
return source.Components
.Select(x => x.GetViewModel)
.ToList();
}
public List<ComponentViewModel> GetFilteredList(ComponentSearchModel
model)
{
if (string.IsNullOrEmpty(model.ComponentName))
{
return new();
}
return source.Components
.Where(x => x.ComponentName.Contains(model.ComponentName))
.Select(x => x.GetViewModel).ToList();
}
public ComponentViewModel? GetElement(ComponentSearchModel model)
{
if (string.IsNullOrEmpty(model.ComponentName) && !model.Id.HasValue)
{
return null;
}
return source.Components
.FirstOrDefault(x => (!string.IsNullOrEmpty(model.ComponentName) && x.ComponentName == model.ComponentName) ||
(model.Id.HasValue && x.Id == model.Id))?.GetViewModel;
}
public ComponentViewModel? Insert(ComponentBindingModel model)
{
model.Id = source.Components.Count > 0 ? source.Components.Max(x => x.Id) + 1 : 1;
var newComponent = Component.Create(model);
if (newComponent == null)
{
return null;
}
source.Components.Add(newComponent);
source.SaveComponents();
return newComponent.GetViewModel;
}
public ComponentViewModel? Update(ComponentBindingModel model)
{
var component = source.Components.FirstOrDefault(x => x.Id == model.Id);
if (component == null)
{
return null;
}
component.Update(model);
source.SaveComponents();
return component.GetViewModel;
}
public ComponentViewModel? Delete(ComponentBindingModel model)
{
var element = source.Components.FirstOrDefault(x => x.Id == model.Id);
if (element != null)
{
source.Components.Remove(element);
source.SaveComponents();
return element.GetViewModel;
}
return null;
}
}
}

View File

@ -0,0 +1,100 @@
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryContracts.SearchModels;
using GarmentFactoryContracts.StoragesContracts;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryFileImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryFileImplement.Implements
{
public class OrderStorage : IOrderStorage
{
private readonly DataFileSingleton source;
public OrderStorage()
{
source = DataFileSingleton.GetInstance();
}
public List<OrderViewModel> GetFullList()
{
return source.Orders
.Select(x => AddTextileName(x.GetViewModel))
.ToList();
}
public List<OrderViewModel> GetFilteredList(OrderSearchModel model)
{
if (!model.Id.HasValue)
{
return new();
}
return source.Orders
.Where(x => x.Id == model.Id)
.Select(x => AddTextileName(x.GetViewModel))
.ToList();
}
public OrderViewModel? GetElement(OrderSearchModel model)
{
if (!model.Id.HasValue)
{
return null;
}
var order = source.Orders.FirstOrDefault(x => x.Id == model.Id);
if (order == null)
{
return null;
}
return AddTextileName(order.GetViewModel);
}
public OrderViewModel? Insert(OrderBindingModel model)
{
model.Id = source.Orders.Count > 0 ? source.Orders.Max(x => x.Id) + 1 : 1;
var newOrder = Order.Create(model);
if (newOrder == null)
{
return null;
}
source.Orders.Add(newOrder);
source.SaveOrders();
return AddTextileName(newOrder.GetViewModel);
}
public OrderViewModel? Update(OrderBindingModel model)
{
var order = source.Orders.FirstOrDefault(x => x.Id == model.Id);
if (order == null)
{
return null;
}
order.Update(model);
source.SaveOrders();
return AddTextileName(order.GetViewModel);
}
public OrderViewModel? Delete(OrderBindingModel model)
{
var element = source.Orders.FirstOrDefault(x => x.Id == model.Id);
if (element != null)
{
source.Orders.Remove(element);
source.SaveOrders();
return AddTextileName(element.GetViewModel);
}
return null;
}
private OrderViewModel AddTextileName(OrderViewModel model)
{
var selectedTextile = source.Textiles.FirstOrDefault(x => x.Id == model.TextileId);
model.TextileName = selectedTextile?.TextileName;
return model;
}
}
}

View File

@ -0,0 +1,137 @@
using GarmentFactoryContracts.SearchModels;
using GarmentFactoryContracts.StoragesContracts;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryDataModels.Models;
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryFileImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryFileImplement.Implements
{
public class ShopStorage : IShopStorage
{
private readonly DataFileSingleton source;
public ShopStorage()
{
source = DataFileSingleton.GetInstance();
}
public List<ShopViewModel> GetFullList()
{
return source.Shops
.Select(x => x.GetViewModel)
.ToList();
}
public List<ShopViewModel> GetFilteredList(ShopSearchModel model)
{
if (string.IsNullOrEmpty(model.ShopName))
{
return new();
}
return source.Shops
.Where(x => x.ShopName.Contains(model.ShopName))
.Select(x => x.GetViewModel)
.ToList();
}
public ShopViewModel? GetElement(ShopSearchModel model)
{
if (string.IsNullOrEmpty(model.ShopName) && !model.Id.HasValue)
{
return null;
}
return source.Shops
.FirstOrDefault(x => (!string.IsNullOrEmpty(model.ShopName) && x.ShopName == model.ShopName) ||
(model.Id.HasValue && x.Id == model.Id))
?.GetViewModel;
}
public ShopViewModel? Insert(ShopBindingModel model)
{
model.Id = source.Shops.Count > 0 ? source.Shops.Max(x => x.Id) + 1 : 1;
var newShop = Shop.Create(model);
if (newShop == null)
{
return null;
}
source.Shops.Add(newShop);
source.SaveShops();
return newShop.GetViewModel;
}
public ShopViewModel? Update(ShopBindingModel model)
{
var shop = source.Shops.FirstOrDefault(x => x.Id == model.Id);
if (shop == null)
{
return null;
}
shop.Update(model);
source.SaveShops();
return shop.GetViewModel;
}
public ShopViewModel? Delete(ShopBindingModel model)
{
var element = source.Shops.FirstOrDefault(x => x.Id == model.Id);
if (element != null)
{
source.Shops.Remove(element);
source.SaveShops();
return element.GetViewModel;
}
return null;
}
public bool MakeSale(ITextileModel model, int count)
{
var textile = source.Textiles.FirstOrDefault(x => x.Id == model.Id);
int countInShops = source.Shops.SelectMany(x => x.ShopTextiles).Sum(y => y.Key == model.Id ? y.Value.Item2 : 0);
if (textile == null || countInShops < count)
{
return false;
}
foreach (var shop in source.Shops)
{
var shopTextiles = shop.ShopTextiles.Where(x => x.Key == model.Id);
if (shopTextiles.Any())
{
var shopTextile = shopTextiles.First();
int min = Math.Min(shopTextile.Value.Item2, count);
if (min == shopTextile.Value.Item2)
{
shop.ShopTextiles.Remove(shopTextile.Key);
}
else
{
shop.ShopTextiles[shopTextile.Key] = (shopTextile.Value.Item1, shopTextile.Value.Item2 - min);
}
shop.Update(new ShopBindingModel
{
Id = shop.Id,
ShopName = shop.ShopName,
Address = shop.Address,
DateOpening = shop.DateOpening,
ShopTextiles = shop.ShopTextiles,
TextilesMaximum = shop.TextilesMaximum
});
count -= min;
if (count <= 0)
{
break;
}
}
}
source.SaveShops();
return true;
}
}
}

View File

@ -0,0 +1,91 @@
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryContracts.SearchModels;
using GarmentFactoryContracts.StoragesContracts;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryFileImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryFileImplement.Implements
{
public class TextileStorage : ITextileStorage
{
private readonly DataFileSingleton source;
public TextileStorage()
{
source = DataFileSingleton.GetInstance();
}
public List<TextileViewModel> GetFullList()
{
return source.Textiles
.Select(x => x.GetViewModel)
.ToList();
}
public List<TextileViewModel> GetFilteredList(TextileSearchModel model)
{
if (string.IsNullOrEmpty(model.TextileName))
{
return new();
}
return source.Textiles
.Where(x => x.TextileName.Contains(model.TextileName))
.Select(x => x.GetViewModel)
.ToList();
}
public TextileViewModel? GetElement(TextileSearchModel model)
{
if (string.IsNullOrEmpty(model.TextileName) && !model.Id.HasValue)
{
return null;
}
return source.Textiles
.FirstOrDefault(x => (!string.IsNullOrEmpty(model.TextileName) && x.TextileName == model.TextileName) ||
(model.Id.HasValue && x.Id == model.Id))
?.GetViewModel;
}
public TextileViewModel? Insert(TextileBindingModel model)
{
model.Id = source.Textiles.Count > 0 ? source.Textiles.Max(x => x.Id) + 1 : 1;
var newTextile = Textile.Create(model);
if (newTextile == null)
{
return null;
}
source.Textiles.Add(newTextile);
source.SaveTextiles();
return newTextile.GetViewModel;
}
public TextileViewModel? Update(TextileBindingModel model)
{
var textile = source.Textiles.FirstOrDefault(x => x.Id == model.Id);
if (textile == null)
{
return null;
}
textile.Update(model);
source.SaveTextiles();
return textile.GetViewModel;
}
public TextileViewModel? Delete(TextileBindingModel model)
{
var element = source.Textiles.FirstOrDefault(x => x.Id == model.Id);
if (element != null)
{
source.Textiles.Remove(element);
source.SaveTextiles();
return element.GetViewModel;
}
return null;
}
}
}

View File

@ -0,0 +1,66 @@
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace GarmentFactoryFileImplement.Models
{
public class Component : IComponentModel
{
public int Id { get; private set; }
public string ComponentName { get; private set; } = string.Empty;
public double Cost { get; set; }
public static Component? Create(ComponentBindingModel model)
{
if (model == null)
{
return null;
}
return new Component()
{
Id = model.Id,
ComponentName = model.ComponentName,
Cost = model.Cost
};
}
public static Component? Create(XElement element)
{
if (element == null)
{
return null;
}
return new Component()
{
Id = Convert.ToInt32(element.Attribute("Id")!.Value),
ComponentName = element.Element("ComponentName")!.Value,
Cost = Convert.ToDouble(element.Element("Cost")!.Value)
};
}
public void Update(ComponentBindingModel model)
{
if (model == null)
{
return;
}
ComponentName = model.ComponentName;
Cost = model.Cost;
}
public ComponentViewModel GetViewModel => new()
{
Id = Id,
ComponentName = ComponentName,
Cost = Cost
};
public XElement GetXElement => new("Component",
new XAttribute("Id", Id),
new XElement("ComponentName", ComponentName),
new XElement("Cost", Cost.ToString()));
}
}

View File

@ -0,0 +1,97 @@
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryDataModels.Enums;
using GarmentFactoryDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace GarmentFactoryFileImplement.Models
{
public class Order : IOrderModel
{
public int Id { get; private set; }
public int TextileId { get; private set; }
public int Count { get; private set; }
public double Sum { get; private set; }
public OrderStatus Status { get; private set; }
public DateTime DateCreate { get; private set; }
public DateTime? DateImplement { get; private set; }
public static Order? Create(OrderBindingModel? model)
{
if (model == null)
{
return null;
}
return new Order()
{
Id = model.Id,
TextileId = model.TextileId,
Count = model.Count,
Sum = model.Sum,
Status = model.Status,
DateCreate = model.DateCreate,
DateImplement = model.DateImplement
};
}
public static Order? Create(XElement element)
{
if (element == null)
{
return null;
}
return new Order()
{
Id = Convert.ToInt32(element.Attribute("Id")!.Value),
TextileId = Convert.ToInt32(element.Element("TextileId")!.Value),
Count = Convert.ToInt32(element.Element("Count")!.Value),
Sum = Convert.ToDouble(element.Element("Sum")!.Value),
Status = (OrderStatus)Enum.Parse(typeof(OrderStatus), element.Element("Status")!.Value),
DateCreate = Convert.ToDateTime(element.Element("DateCreate")!.Value),
DateImplement = string.IsNullOrEmpty(element.Element("DateImplement")!.Value) ? null
: Convert.ToDateTime(element.Element("DateImplement")!.Value)
};
}
public void Update(OrderBindingModel? model)
{
if (model == null)
{
return;
}
Status = model.Status;
DateImplement = model.DateImplement;
}
public OrderViewModel GetViewModel => new()
{
Id = Id,
TextileId = TextileId,
Count = Count,
Sum = Sum,
Status = Status,
DateCreate = DateCreate,
DateImplement = DateImplement
};
public XElement GetXElement => new("Order",
new XAttribute("Id", Id),
new XElement("TextileId", TextileId),
new XElement("Count", Count.ToString()),
new XElement("Sum", Sum.ToString()),
new XElement("Status", Status.ToString()),
new XElement("DateCreate", DateCreate.ToString()),
new XElement("DateImplement", DateImplement.ToString()));
}
}

View File

@ -0,0 +1,114 @@
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace GarmentFactoryFileImplement.Models
{
public class Shop : IShopModel
{
public int Id { get; private set; }
public string ShopName { get; private set; } = string.Empty;
public string Address { get; private set; } = string.Empty;
public DateTime DateOpening { get; private set; }
public Dictionary<int, int> Textiles { get; private set; } = new();
private Dictionary<int, (ITextileModel, int)>? _shopTextiles = null;
public Dictionary<int, (ITextileModel, int)> ShopTextiles
{
get
{
if (_shopTextiles == null)
{
var source = DataFileSingleton.GetInstance();
_shopTextiles = Textiles.ToDictionary(x => x.Key,
y => ((source.Textiles.FirstOrDefault(z => z.Id == y.Key) as ITextileModel)!, y.Value));
}
return _shopTextiles;
}
}
public int TextilesMaximum { get; private set; }
public static Shop? Create(ShopBindingModel? model)
{
if (model == null)
{
return null;
}
return new Shop()
{
Id = model.Id,
ShopName = model.ShopName,
Address = model.Address,
DateOpening = model.DateOpening,
Textiles = model.ShopTextiles.ToDictionary(x => x.Key, x => x.Value.Item2),
TextilesMaximum = model.TextilesMaximum
};
}
public static Shop? Create(XElement element)
{
if (element == null)
{
return null;
}
return new Shop()
{
Id = Convert.ToInt32(element.Attribute("Id")!.Value),
ShopName = element.Element("ShopName")!.Value,
Address = element.Element("Address")!.Value,
DateOpening = Convert.ToDateTime(element.Element("DateOpening")!.Value),
TextilesMaximum = Convert.ToInt32(element.Element("TextilesMaximum")!.Value),
Textiles = element.Element("ShopTextiles")!.Elements("ShopTextile")
.ToDictionary(x => Convert.ToInt32(x.Element("Key")?.Value), x => Convert.ToInt32(x.Element("Value")?.Value))
};
}
public void Update(ShopBindingModel? model)
{
if (model == null)
{
return;
}
ShopName = model.ShopName;
Address = model.Address;
DateOpening = model.DateOpening;
TextilesMaximum = model.TextilesMaximum;
Textiles = model.ShopTextiles.ToDictionary(x => x.Key, x => x.Value.Item2);
_shopTextiles = null;
}
public ShopViewModel GetViewModel => new()
{
Id = Id,
ShopName = ShopName,
Address = Address,
DateOpening = DateOpening,
ShopTextiles = ShopTextiles,
TextilesMaximum = TextilesMaximum
};
public XElement GetXElement => new("Shop",
new XAttribute("Id", Id),
new XElement("ShopName", ShopName),
new XElement("Address", Address),
new XElement("DateOpening", DateOpening.ToString()),
new XElement("TextilesMaximum", TextilesMaximum.ToString()),
new XElement("ShopTextiles",
Textiles.Select(x => new XElement("ShopTextile",
new XElement("Key", x.Key),
new XElement("Value", x.Value))).ToArray()));
}
}

View File

@ -0,0 +1,98 @@
using GarmentFactoryContracts.BindingModels;
using GarmentFactoryContracts.ViewModels;
using GarmentFactoryDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace GarmentFactoryFileImplement.Models
{
public class Textile : ITextileModel
{
public int Id { get; private set; }
public string TextileName { get; private set; } = string.Empty;
public double Price { get; private set; }
public Dictionary<int, int> Components { get; private set; } = new();
private Dictionary<int, (IComponentModel, int)>? _textileComponents =
null;
public Dictionary<int, (IComponentModel, int)> TextileComponents
{
get
{
if (_textileComponents == null)
{
var source = DataFileSingleton.GetInstance();
_textileComponents = Components.ToDictionary(x => x.Key, y =>
((source.Components.FirstOrDefault(z => z.Id == y.Key) as IComponentModel)!,
y.Value));
}
return _textileComponents;
}
}
public static Textile? Create(TextileBindingModel model)
{
if (model == null)
{
return null;
}
return new Textile()
{
Id = model.Id,
TextileName = model.TextileName,
Price = model.Price,
Components = model.TextileComponents.ToDictionary(x => x.Key, x
=> x.Value.Item2)
};
}
public static Textile? Create(XElement element)
{
if (element == null)
{
return null;
}
return new Textile()
{
Id = Convert.ToInt32(element.Attribute("Id")!.Value),
TextileName = element.Element("TextileName")!.Value,
Price = Convert.ToDouble(element.Element("Price")!.Value),
Components =
element.Element("TextileComponents")!.Elements("TextileComponent")
.ToDictionary(x =>
Convert.ToInt32(x.Element("Key")?.Value), x =>
Convert.ToInt32(x.Element("Value")?.Value))
};
}
public void Update(TextileBindingModel model)
{
if (model == null)
{
return;
}
TextileName = model.TextileName;
Price = model.Price;
Components = model.TextileComponents.ToDictionary(x => x.Key, x =>
x.Value.Item2);
_textileComponents = null;
}
public TextileViewModel GetViewModel => new()
{
Id = Id,
TextileName = TextileName,
Price = Price,
TextileComponents = TextileComponents
};
public XElement GetXElement => new("Textile",
new XAttribute("Id", Id),
new XElement("TextileName", TextileName),
new XElement("Price", Price.ToString()),
new XElement("TextileComponents", Components.Select(x =>
new XElement("TextileComponent",
new XElement("Key", x.Key),
new XElement("Value", x.Value))).ToArray()));
}
}

View File

@ -2,6 +2,7 @@
using GarmentFactoryContracts.SearchModels; using GarmentFactoryContracts.SearchModels;
using GarmentFactoryContracts.StoragesContracts; using GarmentFactoryContracts.StoragesContracts;
using GarmentFactoryContracts.ViewModels; using GarmentFactoryContracts.ViewModels;
using GarmentFactoryDataModels.Models;
using GarmentFactoryListImplement.Models; using GarmentFactoryListImplement.Models;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
@ -110,5 +111,10 @@ namespace GarmentFactoryListImplement.Implements
} }
return null; return null;
} }
}
public bool MakeSale(ITextileModel model, int count)
{
throw new NotImplementedException();
}
}
} }

View File

@ -61,5 +61,7 @@ namespace GarmentFactoryListImplement.Models
DateOpening = DateOpening, DateOpening = DateOpening,
ShopTextiles = ShopTextiles ShopTextiles = ShopTextiles
}; };
}
public int TextilesMaximum { get; private set; }
}
} }

View File

@ -20,169 +20,177 @@
base.Dispose(disposing); base.Dispose(disposing);
} }
#region Windows Form Designer generated code #region Windows Form Designer generated code
/// <summary> /// <summary>
/// Required method for Designer support - do not modify /// Required method for Designer support - do not modify
/// the contents of this method with the code editor. /// the contents of this method with the code editor.
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
menuStrip = new MenuStrip(); menuStrip = new MenuStrip();
справочникиToolStripMenuItem = new ToolStripMenuItem(); справочникиToolStripMenuItem = new ToolStripMenuItem();
компонентыToolStripMenuItem = new ToolStripMenuItem(); компонентыToolStripMenuItem = new ToolStripMenuItem();
изделиеToolStripMenuItem = new ToolStripMenuItem(); изделиеToolStripMenuItem = new ToolStripMenuItem();
пополнениеМагазинаToolStripMenuItem = new ToolStripMenuItem(); магазинToolStripMenuItem = new ToolStripMenuItem();
dataGridView = new DataGridView(); пополнениеМагазинаToolStripMenuItem = new ToolStripMenuItem();
buttonCreateOrder = new Button(); dataGridView = new DataGridView();
buttonTakeOrderInWork = new Button(); buttonCreateOrder = new Button();
buttonOrderReady = new Button(); buttonTakeOrderInWork = new Button();
buttonIssuedOrder = new Button(); buttonOrderReady = new Button();
buttonUpd = new Button(); buttonIssuedOrder = new Button();
магазинToolStripMenuItem = new ToolStripMenuItem(); buttonUpd = new Button();
menuStrip.SuspendLayout(); продажаИзделияToolStripMenuItem = new ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); menuStrip.SuspendLayout();
SuspendLayout(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
// SuspendLayout();
// menuStrip //
// // menuStrip
menuStrip.ImageScalingSize = new Size(20, 20); //
menuStrip.Items.AddRange(new ToolStripItem[] { справочникиToolStripMenuItem, пополнениеМагазинаToolStripMenuItem }); menuStrip.ImageScalingSize = new Size(20, 20);
menuStrip.Location = new Point(0, 0); menuStrip.Items.AddRange(new ToolStripItem[] { справочникиToolStripMenuItem, пополнениеМагазинаToolStripMenuItem, продажаИзделияToolStripMenuItem });
menuStrip.Name = "menuStrip"; menuStrip.Location = new Point(0, 0);
menuStrip.Size = new Size(1178, 28); menuStrip.Name = "menuStrip";
menuStrip.TabIndex = 0; menuStrip.Size = new Size(1178, 28);
menuStrip.Text = "menuStrip1"; menuStrip.TabIndex = 0;
// menuStrip.Text = "menuStrip1";
// справочникиToolStripMenuItem //
// // справочникиToolStripMenuItem
справочникиToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { компонентыToolStripMenuItem, изделиеToolStripMenuItem, магазинToolStripMenuItem }); //
справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem"; справочникиToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { компонентыToolStripMenuItem, изделиеToolStripMenuItem, магазинToolStripMenuItem });
справочникиToolStripMenuItem.Size = new Size(117, 24); справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem";
справочникиToolStripMenuItem.Text = "Справочники"; справочникиToolStripMenuItem.Size = new Size(117, 24);
// справочникиToolStripMenuItem.Text = "Справочники";
// компонентыToolStripMenuItem //
// // компонентыToolStripMenuItem
компонентыToolStripMenuItem.Name = омпонентыToolStripMenuItem"; //
компонентыToolStripMenuItem.Size = new Size(224, 26); компонентыToolStripMenuItem.Name = омпонентыToolStripMenuItem";
компонентыToolStripMenuItem.Text = "Компоненты"; компонентыToolStripMenuItem.Size = new Size(224, 26);
компонентыToolStripMenuItem.Click += КомпонентыToolStripMenuItem_Click; компонентыToolStripMenuItem.Text = "Компоненты";
// компонентыToolStripMenuItem.Click += КомпонентыToolStripMenuItem_Click;
// изделиеToolStripMenuItem //
// // изделиеToolStripMenuItem
изделиеToolStripMenuItem.Name = "изделиеToolStripMenuItem"; //
изделиеToolStripMenuItem.Size = new Size(224, 26); изделиеToolStripMenuItem.Name = "изделиеToolStripMenuItem";
изделиеToolStripMenuItem.Text = "Изделие"; изделиеToolStripMenuItem.Size = new Size(224, 26);
изделиеToolStripMenuItem.Click += ИзделиеToolStripMenuItem_Click; изделиеToolStripMenuItem.Text = "Изделие";
// изделиеToolStripMenuItem.Click += ИзделиеToolStripMenuItem_Click;
// пополнениеМагазинаToolStripMenuItem //
// // магазинToolStripMenuItem
пополнениеМагазинаToolStripMenuItem.Name = "пополнениеМагазинаToolStripMenuItem"; //
пополнениеМагазинаToolStripMenuItem.Size = new Size(182, 24); магазинToolStripMenuItem.Name = агазинToolStripMenuItem";
пополнениеМагазинаToolStripMenuItem.Text = "Пополнение магазина"; магазинToolStripMenuItem.Size = new Size(224, 26);
пополнениеМагазинаToolStripMenuItem.Click += ПополнениеМагазинаToolStripMenuItem_Click; магазинToolStripMenuItem.Text = "Магазины";
// магазинToolStripMenuItem.Click += МагазиныToolStripMenuItem_Click;
// dataGridView //
// // пополнениеМагазинаToolStripMenuItem
dataGridView.AllowUserToAddRows = false; //
dataGridView.AllowUserToDeleteRows = false; пополнениеМагазинаToolStripMenuItem.Name = "пополнениеМагазинаToolStripMenuItem";
dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; пополнениеМагазинаToolStripMenuItem.Size = new Size(182, 24);
dataGridView.BackgroundColor = SystemColors.ControlLightLight; пополнениеМагазинаToolStripMenuItem.Text = "Пополнение магазина";
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; пополнениеМагазинаToolStripMenuItem.Click += ПополнениеМагазинаToolStripMenuItem_Click;
dataGridView.Location = new Point(0, 37); //
dataGridView.Name = "dataGridView"; // dataGridView
dataGridView.ReadOnly = true; //
dataGridView.RowHeadersVisible = false; dataGridView.AllowUserToAddRows = false;
dataGridView.RowHeadersWidth = 51; dataGridView.AllowUserToDeleteRows = false;
dataGridView.RowTemplate.Height = 29; dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridView.BackgroundColor = SystemColors.ControlLightLight;
dataGridView.Size = new Size(944, 427); dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.TabIndex = 1; dataGridView.Location = new Point(0, 37);
// dataGridView.Name = "dataGridView";
// buttonCreateOrder dataGridView.ReadOnly = true;
// dataGridView.RowHeadersVisible = false;
buttonCreateOrder.Location = new Point(965, 77); dataGridView.RowHeadersWidth = 51;
buttonCreateOrder.Name = "buttonCreateOrder"; dataGridView.RowTemplate.Height = 29;
buttonCreateOrder.Size = new Size(199, 36); dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
buttonCreateOrder.TabIndex = 2; dataGridView.Size = new Size(944, 427);
buttonCreateOrder.Text = "Создать заказ"; dataGridView.TabIndex = 1;
buttonCreateOrder.UseVisualStyleBackColor = true; //
buttonCreateOrder.Click += ButtonCreateOrder_Click; // buttonCreateOrder
// //
// buttonTakeOrderInWork buttonCreateOrder.Location = new Point(965, 77);
// buttonCreateOrder.Name = "buttonCreateOrder";
buttonTakeOrderInWork.Location = new Point(965, 149); buttonCreateOrder.Size = new Size(199, 36);
buttonTakeOrderInWork.Name = "buttonTakeOrderInWork"; buttonCreateOrder.TabIndex = 2;
buttonTakeOrderInWork.Size = new Size(199, 36); buttonCreateOrder.Text = "Создать заказ";
buttonTakeOrderInWork.TabIndex = 3; buttonCreateOrder.UseVisualStyleBackColor = true;
buttonTakeOrderInWork.Text = "Отдать на выполнение"; buttonCreateOrder.Click += ButtonCreateOrder_Click;
buttonTakeOrderInWork.UseVisualStyleBackColor = true; //
buttonTakeOrderInWork.Click += ButtonTakeOrderInWork_Click; // buttonTakeOrderInWork
// //
// buttonOrderReady buttonTakeOrderInWork.Location = new Point(965, 149);
// buttonTakeOrderInWork.Name = "buttonTakeOrderInWork";
buttonOrderReady.Location = new Point(963, 222); buttonTakeOrderInWork.Size = new Size(199, 36);
buttonOrderReady.Name = "buttonOrderReady"; buttonTakeOrderInWork.TabIndex = 3;
buttonOrderReady.Size = new Size(199, 36); buttonTakeOrderInWork.Text = "Отдать на выполнение";
buttonOrderReady.TabIndex = 4; buttonTakeOrderInWork.UseVisualStyleBackColor = true;
buttonOrderReady.Text = "Заказ готов"; buttonTakeOrderInWork.Click += ButtonTakeOrderInWork_Click;
buttonOrderReady.UseVisualStyleBackColor = true; //
buttonOrderReady.Click += ButtonOrderReady_Click; // buttonOrderReady
// //
// buttonIssuedOrder buttonOrderReady.Location = new Point(963, 222);
// buttonOrderReady.Name = "buttonOrderReady";
buttonIssuedOrder.Location = new Point(965, 305); buttonOrderReady.Size = new Size(199, 36);
buttonIssuedOrder.Name = "buttonIssuedOrder"; buttonOrderReady.TabIndex = 4;
buttonIssuedOrder.Size = new Size(199, 36); buttonOrderReady.Text = "Заказ готов";
buttonIssuedOrder.TabIndex = 5; buttonOrderReady.UseVisualStyleBackColor = true;
buttonIssuedOrder.Text = "Заказ выдан"; buttonOrderReady.Click += ButtonOrderReady_Click;
buttonIssuedOrder.UseVisualStyleBackColor = true; //
buttonIssuedOrder.Click += ButtonIssuedOrder_Click; // buttonIssuedOrder
// //
// buttonUpd buttonIssuedOrder.Location = new Point(965, 305);
// buttonIssuedOrder.Name = "buttonIssuedOrder";
buttonUpd.Location = new Point(965, 384); buttonIssuedOrder.Size = new Size(199, 36);
buttonUpd.Name = "buttonUpd"; buttonIssuedOrder.TabIndex = 5;
buttonUpd.Size = new Size(197, 36); buttonIssuedOrder.Text = "Заказ выдан";
buttonUpd.TabIndex = 6; buttonIssuedOrder.UseVisualStyleBackColor = true;
buttonUpd.Text = "Обновить список"; buttonIssuedOrder.Click += ButtonIssuedOrder_Click;
buttonUpd.UseVisualStyleBackColor = true; //
buttonUpd.Click += ButtonUpd_Click; // buttonUpd
// //
// магазинToolStripMenuItem buttonUpd.Location = new Point(965, 384);
// buttonUpd.Name = "buttonUpd";
магазинToolStripMenuItem.Name = агазинToolStripMenuItem"; buttonUpd.Size = new Size(197, 36);
магазинToolStripMenuItem.Size = new Size(224, 26); buttonUpd.TabIndex = 6;
магазинToolStripMenuItem.Text = "Магазины"; buttonUpd.Text = "Обновить список";
магазинToolStripMenuItem.Click += МагазиныToolStripMenuItem_Click; buttonUpd.UseVisualStyleBackColor = true;
// buttonUpd.Click += ButtonUpd_Click;
// FormMain //
// // продажаИзделияToolStripMenuItem
AutoScaleDimensions = new SizeF(8F, 20F); //
AutoScaleMode = AutoScaleMode.Font; продажаИзделияToolStripMenuItem.Name = "продажаИзделияToolStripMenuItem";
ClientSize = new Size(1178, 463); продажаИзделияToolStripMenuItem.Size = new Size(148, 24);
Controls.Add(buttonUpd); продажаИзделияToolStripMenuItem.Text = "Продажа изделия";
Controls.Add(buttonIssuedOrder); продажаИзделияToolStripMenuItem.Click += продажаИзделияToolStripMenuItem_Click;
Controls.Add(buttonOrderReady); //
Controls.Add(buttonTakeOrderInWork); // FormMain
Controls.Add(buttonCreateOrder); //
Controls.Add(dataGridView); AutoScaleDimensions = new SizeF(8F, 20F);
Controls.Add(menuStrip); AutoScaleMode = AutoScaleMode.Font;
MainMenuStrip = menuStrip; ClientSize = new Size(1178, 463);
Name = "FormMain"; Controls.Add(buttonUpd);
StartPosition = FormStartPosition.CenterScreen; Controls.Add(buttonIssuedOrder);
Text = "Текстильная фабрика"; Controls.Add(buttonOrderReady);
Load += FormMain_Load; Controls.Add(buttonTakeOrderInWork);
menuStrip.ResumeLayout(false); Controls.Add(buttonCreateOrder);
menuStrip.PerformLayout(); Controls.Add(dataGridView);
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); Controls.Add(menuStrip);
ResumeLayout(false); MainMenuStrip = menuStrip;
PerformLayout(); Name = "FormMain";
} StartPosition = FormStartPosition.CenterScreen;
Text = "Текстильная фабрика";
Load += FormMain_Load;
menuStrip.ResumeLayout(false);
menuStrip.PerformLayout();
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion #endregion
private MenuStrip menuStrip; private MenuStrip menuStrip;
private ToolStripMenuItem справочникиToolStripMenuItem; private ToolStripMenuItem справочникиToolStripMenuItem;
private ToolStripMenuItem компонентыToolStripMenuItem; private ToolStripMenuItem компонентыToolStripMenuItem;
private ToolStripMenuItem изделиеToolStripMenuItem; private ToolStripMenuItem изделиеToolStripMenuItem;
@ -194,5 +202,6 @@
private Button buttonUpd; private Button buttonUpd;
private ToolStripMenuItem пополнениеМагазинаToolStripMenuItem; private ToolStripMenuItem пополнениеМагазинаToolStripMenuItem;
private ToolStripMenuItem магазинToolStripMenuItem; private ToolStripMenuItem магазинToolStripMenuItem;
} private ToolStripMenuItem продажаИзделияToolStripMenuItem;
}
} }

View File

@ -13,165 +13,174 @@ using Microsoft.Extensions.Logging;
namespace GarmentFactoryView namespace GarmentFactoryView
{ {
public partial class FormMain : Form public partial class FormMain : Form
{ {
private readonly ILogger _logger; private readonly ILogger _logger;
private readonly IOrderLogic _orderLogic; private readonly IOrderLogic _orderLogic;
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic) public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic)
{ {
InitializeComponent(); InitializeComponent();
_logger = logger; _logger = logger;
_orderLogic = orderLogic; _orderLogic = orderLogic;
} }
private void FormMain_Load(object sender, EventArgs e) private void FormMain_Load(object sender, EventArgs e)
{ {
LoadData(); LoadData();
} }
private void LoadData() private void LoadData()
{ {
try try
{ {
var list = _orderLogic.ReadList(null); var list = _orderLogic.ReadList(null);
if (list != null) if (list != null)
{ {
dataGridView.DataSource = list; dataGridView.DataSource = list;
dataGridView.Columns["TextileId"].Visible = false; dataGridView.Columns["TextileId"].Visible = false;
dataGridView.Columns["TextileName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; dataGridView.Columns["TextileName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
} }
_logger.LogInformation("Загрузка заказов"); _logger.LogInformation("Загрузка заказов");
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Ошибка загрузки заказов"); _logger.LogError(ex, "Ошибка загрузки заказов");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }
private void КомпонентыToolStripMenuItem_Click(object sender, EventArgs e) private void КомпонентыToolStripMenuItem_Click(object sender, EventArgs e)
{ {
var service = Program.ServiceProvider?.GetService(typeof(FormComponents)); var service = Program.ServiceProvider?.GetService(typeof(FormComponents));
if (service is FormComponents form) if (service is FormComponents form)
{ {
form.ShowDialog(); form.ShowDialog();
} }
} }
private void ИзделиеToolStripMenuItem_Click(object sender, EventArgs e) private void ИзделиеToolStripMenuItem_Click(object sender, EventArgs e)
{ {
var service = Program.ServiceProvider?.GetService(typeof(FormTextiles)); var service = Program.ServiceProvider?.GetService(typeof(FormTextiles));
if (service is FormTextiles form) if (service is FormTextiles form)
{ {
form.ShowDialog(); form.ShowDialog();
} }
} }
private void ButtonCreateOrder_Click(object sender, EventArgs e) private void ButtonCreateOrder_Click(object sender, EventArgs e)
{ {
var service = Program.ServiceProvider?.GetService(typeof(FormCreateOrder)); var service = Program.ServiceProvider?.GetService(typeof(FormCreateOrder));
if (service is FormCreateOrder form) if (service is FormCreateOrder form)
{ {
form.ShowDialog(); form.ShowDialog();
LoadData(); LoadData();
} }
} }
private void ButtonTakeOrderInWork_Click(object sender, EventArgs e) private void ButtonTakeOrderInWork_Click(object sender, EventArgs e)
{ {
if (dataGridView.SelectedRows.Count == 1) if (dataGridView.SelectedRows.Count == 1)
{ {
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
_logger.LogInformation("Заказ №{id}. Меняется статус на 'В работе'", id); _logger.LogInformation("Заказ №{id}. Меняется статус на 'В работе'", id);
try try
{ {
var operationResult = _orderLogic.TakeOrderInWork(new var operationResult = _orderLogic.TakeOrderInWork(new
OrderBindingModel OrderBindingModel
{ Id = id }); { Id = id });
if (!operationResult) if (!operationResult)
{ {
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах."); throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
} }
LoadData(); LoadData();
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Ошибка передачи заказа в работу"); _logger.LogError(ex, "Ошибка передачи заказа в работу");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
MessageBoxIcon.Error); MessageBoxIcon.Error);
} }
} }
} }
private void ButtonOrderReady_Click(object sender, EventArgs e) private void ButtonOrderReady_Click(object sender, EventArgs e)
{ {
if (dataGridView.SelectedRows.Count == 1) if (dataGridView.SelectedRows.Count == 1)
{ {
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
_logger.LogInformation("Заказ №{id}. Меняется статус на 'Готов'", id); _logger.LogInformation("Заказ №{id}. Меняется статус на 'Готов'", id);
try try
{ {
var operationResult = _orderLogic.FinishOrder(new OrderBindingModel { Id = id }); var operationResult = _orderLogic.FinishOrder(new OrderBindingModel { Id = id });
if (!operationResult) if (!operationResult)
{ {
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах."); throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
} }
LoadData(); LoadData();
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Ошибка отметки о готовности заказа"); _logger.LogError(ex, "Ошибка отметки о готовности заказа");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }
} }
private void ButtonIssuedOrder_Click(object sender, EventArgs e) private void ButtonIssuedOrder_Click(object sender, EventArgs e)
{ {
if (dataGridView.SelectedRows.Count == 1) if (dataGridView.SelectedRows.Count == 1)
{ {
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
_logger.LogInformation("Заказ №{id}. Меняется статус на 'Выдан'", id); _logger.LogInformation("Заказ №{id}. Меняется статус на 'Выдан'", id);
try try
{ {
var operationResult = _orderLogic.DeliveryOrder(new OrderBindingModel { Id = id }); var operationResult = _orderLogic.DeliveryOrder(new OrderBindingModel { Id = id });
if (!operationResult) if (!operationResult)
{ {
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах."); throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
} }
_logger.LogInformation("Заказ №{id} выдан", id); _logger.LogInformation("Заказ №{id} выдан", id);
LoadData(); LoadData();
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Ошибка отметки о выдачи заказа"); _logger.LogError(ex, "Ошибка отметки о выдачи заказа");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
MessageBoxIcon.Error); MessageBoxIcon.Error);
} }
} }
} }
private void ButtonUpd_Click(object sender, EventArgs e) private void ButtonUpd_Click(object sender, EventArgs e)
{ {
LoadData(); LoadData();
} }
private void ПополнениеМагазинаToolStripMenuItem_Click(object sender, EventArgs e) private void ПополнениеМагазинаToolStripMenuItem_Click(object sender, EventArgs e)
{ {
var service = Program.ServiceProvider?.GetService(typeof(FormMakeDelivery)); var service = Program.ServiceProvider?.GetService(typeof(FormMakeDelivery));
if (service is FormMakeDelivery form) if (service is FormMakeDelivery form)
{ {
form.ShowDialog(); form.ShowDialog();
} }
} }
private void МагазиныToolStripMenuItem_Click(object sender, EventArgs e) private void МагазиныToolStripMenuItem_Click(object sender, EventArgs e)
{ {
var service = Program.ServiceProvider?.GetService(typeof(FormShops)); var service = Program.ServiceProvider?.GetService(typeof(FormShops));
if (service is FormShops form) if (service is FormShops form)
{ {
form.ShowDialog(); form.ShowDialog();
} }
} }
}
private void продажаИзделияToolStripMenuItem_Click(object sender, EventArgs e)
{
var service = Program.ServiceProvider?.GetService(typeof(FormTextileSale));
if (service is FormTextileSale form)
{
form.ShowDialog();
}
}
}
} }

View File

@ -20,119 +20,120 @@
base.Dispose(disposing); base.Dispose(disposing);
} }
#region Windows Form Designer generated code #region Windows Form Designer generated code
/// <summary> /// <summary>
/// Required method for Designer support - do not modify /// Required method for Designer support - do not modify
/// the contents of this method with the code editor. /// the contents of this method with the code editor.
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
labelShop = new Label(); labelShop = new Label();
labelProduct = new Label(); labelProduct = new Label();
labelCount = new Label(); labelCount = new Label();
comboBoxShop = new ComboBox(); comboBoxShop = new ComboBox();
comboBoxTextile = new ComboBox(); comboBoxTextile = new ComboBox();
textBoxCount = new TextBox(); textBoxCount = new TextBox();
buttonSave = new Button(); buttonSave = new Button();
buttonCancel = new Button(); buttonCancel = new Button();
SuspendLayout(); SuspendLayout();
// //
// labelShop // labelShop
// //
labelShop.AutoSize = true; labelShop.AutoSize = true;
labelShop.Location = new Point(21, 9); labelShop.Location = new Point(21, 9);
labelShop.Name = "labelShop"; labelShop.Name = "labelShop";
labelShop.Size = new Size(76, 20); labelShop.Size = new Size(76, 20);
labelShop.TabIndex = 0; labelShop.TabIndex = 0;
labelShop.Text = "Магазин :"; labelShop.Text = "Магазин :";
// //
// labelProduct // labelProduct
// //
labelProduct.AutoSize = true; labelProduct.AutoSize = true;
labelProduct.Location = new Point(21, 55); labelProduct.Location = new Point(21, 55);
labelProduct.Name = "labelProduct"; labelProduct.Name = "labelProduct";
labelProduct.Size = new Size(73, 20); labelProduct.Size = new Size(73, 20);
labelProduct.TabIndex = 1; labelProduct.TabIndex = 1;
labelProduct.Text = "Продукт :"; labelProduct.Text = "Продукт :";
// //
// labelCount // labelCount
// //
labelCount.AutoSize = true; labelCount.AutoSize = true;
labelCount.Location = new Point(21, 99); labelCount.Location = new Point(21, 99);
labelCount.Name = "labelCount"; labelCount.Name = "labelCount";
labelCount.Size = new Size(97, 20); labelCount.Size = new Size(97, 20);
labelCount.TabIndex = 2; labelCount.TabIndex = 2;
labelCount.Text = "Количество :"; labelCount.Text = "Количество :";
// //
// comboBoxShop // comboBoxShop
// //
comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxShop.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxShop.FormattingEnabled = true; comboBoxShop.FormattingEnabled = true;
comboBoxShop.Location = new Point(124, 6); comboBoxShop.Location = new Point(124, 6);
comboBoxShop.Name = "comboBoxShop"; comboBoxShop.Name = "comboBoxShop";
comboBoxShop.Size = new Size(276, 28); comboBoxShop.Size = new Size(276, 28);
comboBoxShop.TabIndex = 3; comboBoxShop.TabIndex = 3;
// //
// comboBoxTextile // comboBoxTextile
// //
comboBoxTextile.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxTextile.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxTextile.FormattingEnabled = true; comboBoxTextile.FormattingEnabled = true;
comboBoxTextile.Location = new Point(124, 52); comboBoxTextile.Location = new Point(124, 52);
comboBoxTextile.Name = "comboBoxTextile"; comboBoxTextile.Name = "comboBoxTextile";
comboBoxTextile.Size = new Size(276, 28); comboBoxTextile.Size = new Size(276, 28);
comboBoxTextile.TabIndex = 4; comboBoxTextile.TabIndex = 4;
// //
// textBoxCount // textBoxCount
// //
textBoxCount.Location = new Point(124, 99); textBoxCount.Location = new Point(124, 99);
textBoxCount.Name = "textBoxCount"; textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(276, 27); textBoxCount.Size = new Size(276, 27);
textBoxCount.TabIndex = 5; textBoxCount.TabIndex = 5;
// //
// buttonSave // buttonSave
// //
buttonSave.Location = new Point(183, 148); buttonSave.Location = new Point(183, 148);
buttonSave.Name = "buttonSave"; buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(101, 36); buttonSave.Size = new Size(101, 36);
buttonSave.TabIndex = 6; buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить"; buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true; buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click; buttonSave.Click += ButtonSave_Click;
// //
// buttonCancel // buttonCancel
// //
buttonCancel.Location = new Point(290, 148); buttonCancel.Location = new Point(290, 148);
buttonCancel.Name = "buttonCancel"; buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(101, 36); buttonCancel.Size = new Size(101, 36);
buttonCancel.TabIndex = 7; buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена"; buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true; buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click; buttonCancel.Click += ButtonCancel_Click;
// //
// FormMakeDelivery // FormMakeDelivery
// //
AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(426, 196); ClientSize = new Size(426, 196);
Controls.Add(buttonCancel); Controls.Add(buttonCancel);
Controls.Add(buttonSave); Controls.Add(buttonSave);
Controls.Add(textBoxCount); Controls.Add(textBoxCount);
Controls.Add(comboBoxTextile); Controls.Add(comboBoxTextile);
Controls.Add(comboBoxShop); Controls.Add(comboBoxShop);
Controls.Add(labelCount); Controls.Add(labelCount);
Controls.Add(labelProduct); Controls.Add(labelProduct);
Controls.Add(labelShop); Controls.Add(labelShop);
Name = "FormMakeDelivery"; Name = "FormMakeDelivery";
Text = "Пополнение магазина"; StartPosition = FormStartPosition.CenterScreen;
Load += FormMakeDelivery_Load; Text = "Пополнение магазина";
ResumeLayout(false); Load += FormMakeDelivery_Load;
PerformLayout(); ResumeLayout(false);
} PerformLayout();
}
#endregion #endregion
private Label labelShop; private Label labelShop;
private Label labelProduct; private Label labelProduct;
private Label labelCount; private Label labelCount;
private ComboBox comboBoxShop; private ComboBox comboBoxShop;

View File

@ -20,191 +20,211 @@
base.Dispose(disposing); base.Dispose(disposing);
} }
#region Windows Form Designer generated code #region Windows Form Designer generated code
/// <summary> /// <summary>
/// Required method for Designer support - do not modify /// Required method for Designer support - do not modify
/// the contents of this method with the code editor. /// the contents of this method with the code editor.
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
labelName = new Label(); labelName = new Label();
textBoxName = new TextBox(); textBoxName = new TextBox();
labelAddress = new Label(); labelAddress = new Label();
textBoxAddress = new TextBox(); textBoxAddress = new TextBox();
dateTimePicker = new DateTimePicker(); dateTimePicker = new DateTimePicker();
labelOpeningDate = new Label(); labelOpeningDate = new Label();
groupBoxTextiles = new GroupBox(); groupBoxTextiles = new GroupBox();
dataGridView = new DataGridView(); dataGridView = new DataGridView();
ColumnId = new DataGridViewTextBoxColumn(); ColumnId = new DataGridViewTextBoxColumn();
ColumnName = new DataGridViewTextBoxColumn(); ColumnName = new DataGridViewTextBoxColumn();
ColumnCount = new DataGridViewTextBoxColumn(); ColumnCount = new DataGridViewTextBoxColumn();
buttonSave = new Button(); buttonSave = new Button();
buttonCancel = new Button(); buttonCancel = new Button();
groupBoxTextiles.SuspendLayout(); labelMaxTextile = new Label();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); textBoxMaximum = new TextBox();
SuspendLayout(); groupBoxTextiles.SuspendLayout();
// ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
// labelName SuspendLayout();
// //
labelName.AutoSize = true; // labelName
labelName.Location = new Point(16, 13); //
labelName.Margin = new Padding(5, 0, 5, 0); labelName.AutoSize = true;
labelName.Name = "labelName"; labelName.Location = new Point(16, 13);
labelName.Size = new Size(84, 20); labelName.Margin = new Padding(5, 0, 5, 0);
labelName.TabIndex = 1; labelName.Name = "labelName";
labelName.Text = "Название :"; labelName.Size = new Size(84, 20);
// labelName.TabIndex = 1;
// textBoxName labelName.Text = "Название :";
// //
textBoxName.Location = new Point(105, 9); // textBoxName
textBoxName.Margin = new Padding(5, 4, 5, 4); //
textBoxName.Name = "textBoxName"; textBoxName.Location = new Point(105, 9);
textBoxName.Size = new Size(287, 27); textBoxName.Margin = new Padding(5, 4, 5, 4);
textBoxName.TabIndex = 2; textBoxName.Name = "textBoxName";
// textBoxName.Size = new Size(287, 27);
// labelAddress textBoxName.TabIndex = 2;
// //
labelAddress.AutoSize = true; // labelAddress
labelAddress.Location = new Point(16, 53); //
labelAddress.Margin = new Padding(5, 0, 5, 0); labelAddress.AutoSize = true;
labelAddress.Name = "labelAddress"; labelAddress.Location = new Point(16, 53);
labelAddress.Size = new Size(58, 20); labelAddress.Margin = new Padding(5, 0, 5, 0);
labelAddress.TabIndex = 3; labelAddress.Name = "labelAddress";
labelAddress.Text = "Адрес :"; labelAddress.Size = new Size(58, 20);
// labelAddress.TabIndex = 3;
// textBoxAddress labelAddress.Text = "Адрес :";
// //
textBoxAddress.Location = new Point(105, 49); // textBoxAddress
textBoxAddress.Margin = new Padding(5, 4, 5, 4); //
textBoxAddress.Name = "textBoxAddress"; textBoxAddress.Location = new Point(105, 49);
textBoxAddress.Size = new Size(287, 27); textBoxAddress.Margin = new Padding(5, 4, 5, 4);
textBoxAddress.TabIndex = 4; textBoxAddress.Name = "textBoxAddress";
// textBoxAddress.Size = new Size(287, 27);
// dateTimePicker textBoxAddress.TabIndex = 4;
// //
dateTimePicker.Location = new Point(144, 88); // dateTimePicker
dateTimePicker.Margin = new Padding(3, 4, 3, 4); //
dateTimePicker.Name = "dateTimePicker"; dateTimePicker.Location = new Point(144, 88);
dateTimePicker.Size = new Size(249, 27); dateTimePicker.Margin = new Padding(3, 4, 3, 4);
dateTimePicker.TabIndex = 5; dateTimePicker.Name = "dateTimePicker";
// dateTimePicker.Size = new Size(249, 27);
// labelOpeningDate dateTimePicker.TabIndex = 5;
// //
labelOpeningDate.AutoSize = true; // labelOpeningDate
labelOpeningDate.Location = new Point(16, 92); //
labelOpeningDate.Margin = new Padding(5, 0, 5, 0); labelOpeningDate.AutoSize = true;
labelOpeningDate.Name = "labelOpeningDate"; labelOpeningDate.Location = new Point(16, 92);
labelOpeningDate.Size = new Size(117, 20); labelOpeningDate.Margin = new Padding(5, 0, 5, 0);
labelOpeningDate.TabIndex = 6; labelOpeningDate.Name = "labelOpeningDate";
labelOpeningDate.Text = "Дата открытия :"; labelOpeningDate.Size = new Size(117, 20);
// labelOpeningDate.TabIndex = 6;
// groupBoxTextiles labelOpeningDate.Text = "Дата открытия :";
// //
groupBoxTextiles.Controls.Add(dataGridView); // groupBoxTextiles
groupBoxTextiles.Location = new Point(5, 133); //
groupBoxTextiles.Margin = new Padding(5, 4, 5, 4); groupBoxTextiles.Controls.Add(dataGridView);
groupBoxTextiles.Name = "groupBoxTextiles"; groupBoxTextiles.Location = new Point(5, 168);
groupBoxTextiles.Padding = new Padding(5, 4, 5, 4); groupBoxTextiles.Margin = new Padding(5, 4, 5, 4);
groupBoxTextiles.Size = new Size(536, 384); groupBoxTextiles.Name = "groupBoxTextiles";
groupBoxTextiles.TabIndex = 7; groupBoxTextiles.Padding = new Padding(5, 4, 5, 4);
groupBoxTextiles.TabStop = false; groupBoxTextiles.Size = new Size(536, 397);
groupBoxTextiles.Text = "Мороженое"; groupBoxTextiles.TabIndex = 7;
// groupBoxTextiles.TabStop = false;
// dataGridView groupBoxTextiles.Text = "Мороженое";
// //
dataGridView.AllowUserToAddRows = false; // dataGridView
dataGridView.AllowUserToDeleteRows = false; //
dataGridView.BackgroundColor = SystemColors.ControlLightLight; dataGridView.AllowUserToAddRows = false;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.AllowUserToDeleteRows = false;
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnId, ColumnName, ColumnCount }); dataGridView.BackgroundColor = SystemColors.ControlLightLight;
dataGridView.Dock = DockStyle.Left; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Location = new Point(5, 24); dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnId, ColumnName, ColumnCount });
dataGridView.Margin = new Padding(5, 4, 5, 4); dataGridView.Dock = DockStyle.Left;
dataGridView.MultiSelect = false; dataGridView.Location = new Point(5, 24);
dataGridView.Name = "dataGridView"; dataGridView.Margin = new Padding(5, 4, 5, 4);
dataGridView.ReadOnly = true; dataGridView.MultiSelect = false;
dataGridView.RowHeadersVisible = false; dataGridView.Name = "dataGridView";
dataGridView.RowHeadersWidth = 51; dataGridView.ReadOnly = true;
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridView.RowHeadersVisible = false;
dataGridView.Size = new Size(522, 356); dataGridView.RowHeadersWidth = 51;
dataGridView.TabIndex = 0; dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
// dataGridView.Size = new Size(522, 369);
// ColumnId dataGridView.TabIndex = 0;
// //
ColumnId.HeaderText = "Id"; // ColumnId
ColumnId.MinimumWidth = 6; //
ColumnId.Name = "ColumnId"; ColumnId.HeaderText = "Id";
ColumnId.ReadOnly = true; ColumnId.MinimumWidth = 6;
ColumnId.Visible = false; ColumnId.Name = "ColumnId";
ColumnId.Width = 125; ColumnId.ReadOnly = true;
// ColumnId.Visible = false;
// ColumnName ColumnId.Width = 125;
// //
ColumnName.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; // ColumnName
ColumnName.HeaderText = "Название продукта"; //
ColumnName.MinimumWidth = 6; ColumnName.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
ColumnName.Name = "ColumnName"; ColumnName.HeaderText = "Название продукта";
ColumnName.ReadOnly = true; ColumnName.MinimumWidth = 6;
// ColumnName.Name = "ColumnName";
// ColumnCount ColumnName.ReadOnly = true;
// //
ColumnCount.HeaderText = "Количество"; // ColumnCount
ColumnCount.MinimumWidth = 6; //
ColumnCount.Name = "ColumnCount"; ColumnCount.HeaderText = "Количество";
ColumnCount.ReadOnly = true; ColumnCount.MinimumWidth = 6;
ColumnCount.Width = 125; ColumnCount.Name = "ColumnCount";
// ColumnCount.ReadOnly = true;
// buttonSave ColumnCount.Width = 125;
// //
buttonSave.Location = new Point(291, 525); // buttonSave
buttonSave.Margin = new Padding(5, 4, 5, 4); //
buttonSave.Name = "buttonSave"; buttonSave.Location = new Point(301, 592);
buttonSave.Size = new Size(101, 36); buttonSave.Margin = new Padding(5, 4, 5, 4);
buttonSave.TabIndex = 8; buttonSave.Name = "buttonSave";
buttonSave.Text = "Сохранить"; buttonSave.Size = new Size(101, 36);
buttonSave.UseVisualStyleBackColor = true; buttonSave.TabIndex = 8;
buttonSave.Click += ButtonSave_Click; buttonSave.Text = "Сохранить";
// buttonSave.UseVisualStyleBackColor = true;
// buttonCancel buttonSave.Click += ButtonSave_Click;
// //
buttonCancel.Location = new Point(410, 525); // buttonCancel
buttonCancel.Margin = new Padding(5, 4, 5, 4); //
buttonCancel.Name = "buttonCancel"; buttonCancel.Location = new Point(421, 592);
buttonCancel.Size = new Size(101, 36); buttonCancel.Margin = new Padding(5, 4, 5, 4);
buttonCancel.TabIndex = 9; buttonCancel.Name = "buttonCancel";
buttonCancel.Text = "Отмена"; buttonCancel.Size = new Size(101, 36);
buttonCancel.UseVisualStyleBackColor = true; buttonCancel.TabIndex = 9;
buttonCancel.Click += ButtonCancel_Click; buttonCancel.Text = "Отмена";
// buttonCancel.UseVisualStyleBackColor = true;
// FormShop buttonCancel.Click += ButtonCancel_Click;
// //
AutoScaleDimensions = new SizeF(8F, 20F); // labelMaxTextile
AutoScaleMode = AutoScaleMode.Font; //
ClientSize = new Size(546, 576); labelMaxTextile.AutoSize = true;
Controls.Add(buttonCancel); labelMaxTextile.Location = new Point(16, 137);
Controls.Add(buttonSave); labelMaxTextile.Name = "labelMaxTextile";
Controls.Add(groupBoxTextiles); labelMaxTextile.Size = new Size(150, 20);
Controls.Add(labelOpeningDate); labelMaxTextile.TabIndex = 10;
Controls.Add(dateTimePicker); labelMaxTextile.Text = "Максимум изделия :";
Controls.Add(textBoxAddress); //
Controls.Add(labelAddress); // textBoxMaximum
Controls.Add(textBoxName); //
Controls.Add(labelName); textBoxMaximum.Location = new Point(173, 134);
Margin = new Padding(3, 4, 3, 4); textBoxMaximum.Name = "textBoxMaximum";
Name = "FormShop"; textBoxMaximum.Size = new Size(219, 27);
StartPosition = FormStartPosition.CenterScreen; textBoxMaximum.TabIndex = 11;
Text = "Магазин"; //
Load += FormShop_Load; // FormShop
groupBoxTextiles.ResumeLayout(false); //
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); AutoScaleDimensions = new SizeF(8F, 20F);
ResumeLayout(false); AutoScaleMode = AutoScaleMode.Font;
PerformLayout(); ClientSize = new Size(546, 641);
} Controls.Add(textBoxMaximum);
Controls.Add(labelMaxTextile);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(groupBoxTextiles);
Controls.Add(labelOpeningDate);
Controls.Add(dateTimePicker);
Controls.Add(textBoxAddress);
Controls.Add(labelAddress);
Controls.Add(textBoxName);
Controls.Add(labelName);
Margin = new Padding(3, 4, 3, 4);
Name = "FormShop";
StartPosition = FormStartPosition.CenterScreen;
Text = "Магазин";
Load += FormShop_Load;
groupBoxTextiles.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion #endregion
private Label labelName; private Label labelName;
private TextBox textBoxName; private TextBox textBoxName;
private Label labelAddress; private Label labelAddress;
private TextBox textBoxAddress; private TextBox textBoxAddress;
@ -217,5 +237,7 @@
private DataGridViewTextBoxColumn ColumnId; private DataGridViewTextBoxColumn ColumnId;
private DataGridViewTextBoxColumn ColumnName; private DataGridViewTextBoxColumn ColumnName;
private DataGridViewTextBoxColumn ColumnCount; private DataGridViewTextBoxColumn ColumnCount;
} private Label labelMaxTextile;
private TextBox textBoxMaximum;
}
} }

View File

@ -6,120 +6,128 @@ using Microsoft.Extensions.Logging;
namespace GarmentFactoryView namespace GarmentFactoryView
{ {
public partial class FormShop : Form public partial class FormShop : Form
{ {
private readonly ILogger _logger; private readonly ILogger _logger;
private readonly IShopLogic _logic; private readonly IShopLogic _logic;
private int? _id; private int? _id;
private Dictionary<int, (ITextileModel, int)> _shopTextiles; private Dictionary<int, (ITextileModel, int)> _shopTextiles;
public int Id { set { _id = value; } } public int Id { set { _id = value; } }
public FormShop(ILogger<FormShop> logger, IShopLogic logic) public FormShop(ILogger<FormShop> logger, IShopLogic logic)
{ {
InitializeComponent(); InitializeComponent();
_logger = logger; _logger = logger;
_logic = logic; _logic = logic;
_shopTextiles = new Dictionary<int, (ITextileModel, int)>(); _shopTextiles = new Dictionary<int, (ITextileModel, int)>();
} }
private void FormShop_Load(object sender, EventArgs e) private void FormShop_Load(object sender, EventArgs e)
{ {
if (_id.HasValue) if (_id.HasValue)
{ {
_logger.LogInformation("Shop loading"); _logger.LogInformation("Shop loading");
try try
{ {
var view = _logic.ReadElement(new ShopSearchModel { Id = _id.Value }); var view = _logic.ReadElement(new ShopSearchModel { Id = _id.Value });
if (view != null) if (view != null)
{ {
textBoxName.Text = view.ShopName; textBoxName.Text = view.ShopName;
textBoxAddress.Text = view.Address; textBoxAddress.Text = view.Address;
dateTimePicker.Value = view.DateOpening; dateTimePicker.Value = view.DateOpening;
_shopTextiles = view.ShopTextiles ?? new Dictionary<int, (ITextileModel, int)>(); textBoxMaximum.Text = view.TextilesMaximum.ToString();
LoadData(); _shopTextiles = view.ShopTextiles ?? new Dictionary<int, (ITextileModel, int)>();
} LoadData();
} }
catch (Exception ex) }
{ catch (Exception ex)
_logger.LogError(ex, "Shop loading error"); {
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); _logger.LogError(ex, "Shop loading error");
} MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }
}
private void LoadData() private void LoadData()
{ {
_logger.LogInformation("Shop textiles loading"); _logger.LogInformation("Shop textiles loading");
try try
{ {
if (_shopTextiles != null) if (_shopTextiles != null)
{ {
dataGridView.Rows.Clear(); dataGridView.Rows.Clear();
foreach (var textile in _shopTextiles) foreach (var textile in _shopTextiles)
{ {
dataGridView.Rows.Add(new object[] { textile.Key, textile.Value.Item1.TextileName, textile.Value.Item2 }); dataGridView.Rows.Add(new object[] { textile.Key, textile.Value.Item1.TextileName, textile.Value.Item2 });
} }
} }
} }
catch (Exception ex) catch (Exception ex)
{ {
_logger.LogError(ex, "Shop textiles loading error"); _logger.LogError(ex, "Shop textiles loading error");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
} }
} }
private void ButtonSave_Click(object sender, EventArgs e) private void ButtonSave_Click(object sender, EventArgs e)
{ {
if (string.IsNullOrEmpty(textBoxName.Text)) if (string.IsNullOrEmpty(textBoxName.Text))
{ {
MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return; return;
} }
if (string.IsNullOrEmpty(textBoxAddress.Text)) if (string.IsNullOrEmpty(textBoxAddress.Text))
{ {
MessageBox.Show("Заполните адрес", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show("Заполните адрес", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return; return;
} }
if (string.IsNullOrEmpty(dateTimePicker.Text)) if (string.IsNullOrEmpty(dateTimePicker.Text))
{ {
MessageBox.Show("Заполните дату", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBox.Show("Заполните дату", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return; return;
} }
_logger.LogInformation("Shop saving"); if (string.IsNullOrEmpty(textBoxMaximum.Text))
try {
{ MessageBox.Show("Заполните максимальное количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
var model = new ShopBindingModel return;
{ }
Id = _id ?? 0, _logger.LogInformation("Shop saving");
ShopName = textBoxName.Text, try
Address = textBoxAddress.Text, {
DateOpening = dateTimePicker.Value, var model = new ShopBindingModel
ShopTextiles = _shopTextiles {
}; Id = _id ?? 0,
var operationResult = _id.HasValue ? _logic.Update(model) : _logic.Create(model); ShopName = textBoxName.Text,
if (!operationResult) Address = textBoxAddress.Text,
{ DateOpening = dateTimePicker.Value,
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах."); TextilesMaximum = Convert.ToInt32(textBoxMaximum.Text),
} ShopTextiles = _shopTextiles
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information); };
DialogResult = DialogResult.OK; var operationResult = _id.HasValue ? _logic.Update(model) : _logic.Create(model);
Close(); if (!operationResult)
} {
catch (Exception ex) throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
{ }
_logger.LogError(ex, "Shop saving error"); MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); DialogResult = DialogResult.OK;
} Close();
} }
catch (Exception ex)
{
_logger.LogError(ex, "Shop saving error");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void ButtonCancel_Click(object sender, EventArgs e) private void ButtonCancel_Click(object sender, EventArgs e)
{ {
DialogResult = DialogResult.Cancel; DialogResult = DialogResult.Cancel;
Close(); Close();
} }
}
}
} }

View File

@ -0,0 +1,121 @@
namespace GarmentFactoryView
{
partial class FormTextileSale
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
labelTextile = new Label();
labelCount = new Label();
buttonSale = new Button();
buttonCancel = new Button();
comboBoxTextile = new ComboBox();
textBoxCount = new TextBox();
SuspendLayout();
//
// labelTextile
//
labelTextile.AutoSize = true;
labelTextile.Location = new Point(25, 33);
labelTextile.Name = "labelTextile";
labelTextile.Size = new Size(75, 20);
labelTextile.TabIndex = 0;
labelTextile.Text = "Изделие :";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(25, 81);
labelCount.Name = "labelCount";
labelCount.Size = new Size(97, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество :";
//
// buttonSale
//
buttonSale.Location = new Point(212, 124);
buttonSale.Name = "buttonSale";
buttonSale.Size = new Size(101, 36);
buttonSale.TabIndex = 2;
buttonSale.Text = "Продать";
buttonSale.UseVisualStyleBackColor = true;
buttonSale.Click += ButtonSale_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(328, 124);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(101, 36);
buttonCancel.TabIndex = 3;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// comboBoxTextile
//
comboBoxTextile.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxTextile.FormattingEnabled = true;
comboBoxTextile.Location = new Point(132, 30);
comboBoxTextile.Name = "comboBoxTextile";
comboBoxTextile.Size = new Size(297, 28);
comboBoxTextile.TabIndex = 4;
//
// textBoxCount
//
textBoxCount.Location = new Point(132, 78);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(297, 27);
textBoxCount.TabIndex = 5;
//
// FormTextileSale
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(464, 176);
Controls.Add(textBoxCount);
Controls.Add(comboBoxTextile);
Controls.Add(buttonCancel);
Controls.Add(buttonSale);
Controls.Add(labelCount);
Controls.Add(labelTextile);
Name = "FormTextileSale";
StartPosition = FormStartPosition.CenterScreen;
Text = "Продажа изделий";
Load += FormTextileSale_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelTextile;
private Label labelCount;
private Button buttonSale;
private Button buttonCancel;
private ComboBox comboBoxTextile;
private TextBox textBoxCount;
}
}

View File

@ -0,0 +1,95 @@
using GarmentFactoryContracts.BusinessLogicsContracts;
using GarmentFactoryContracts.BindingModels;
using Microsoft.Extensions.Logging;
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 GarmentFactoryView
{
public partial class FormTextileSale : Form
{
private readonly ILogger _logger;
private readonly ITextileLogic _logicTextile;
private readonly IShopLogic _logicShop;
public FormTextileSale(ILogger<FormMakeDelivery> logger, ITextileLogic logicTextile, IShopLogic logicShop)
{
InitializeComponent();
_logger = logger;
_logicTextile = logicTextile;
_logicShop = logicShop;
}
private void ButtonCancel_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
Close();
}
private void ButtonSale_Click(object sender, EventArgs e)
{
if (comboBoxTextile.SelectedValue == null)
{
MessageBox.Show("Выберите изделие", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
if (string.IsNullOrEmpty(textBoxCount.Text))
{
MessageBox.Show("Заполните поле Количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
_logger.LogInformation("Textile sale");
try
{
var operationResult = _logicShop.MakeSale(
new TextileBindingModel
{
Id = Convert.ToInt32(comboBoxTextile.SelectedValue)
},
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, "Textile sale error");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void FormTextileSale_Load(object sender, EventArgs e)
{
_logger.LogInformation("Textiles loading");
try
{
var list = _logicTextile.ReadList(null);
if (list != null)
{
comboBoxTextile.DisplayMember = "TextileName";
comboBoxTextile.ValueMember = "Id";
comboBoxTextile.DataSource = list;
comboBoxTextile.SelectedItem = null;
}
}
catch (Exception ex)
{
_logger.LogError(ex, "Textiles loading error");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@ -17,6 +17,7 @@
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\GarmentFactoryBusinessLogic\GarmentFactoryBusinessLogic.csproj" /> <ProjectReference Include="..\GarmentFactoryBusinessLogic\GarmentFactoryBusinessLogic.csproj" />
<ProjectReference Include="..\GarmentFactoryContracts\GarmentFactoryContracts.csproj" /> <ProjectReference Include="..\GarmentFactoryContracts\GarmentFactoryContracts.csproj" />
<ProjectReference Include="..\GarmentFactoryFileImplement\GarmentFactoryFileImplement.csproj" />
<ProjectReference Include="..\GarmentFactoryListImplement\GarmentFactoryListImplement.csproj" /> <ProjectReference Include="..\GarmentFactoryListImplement\GarmentFactoryListImplement.csproj" />
</ItemGroup> </ItemGroup>

View File

@ -1,10 +1,10 @@
using GarmentFactoryBusinessLogic.BusinessLogics; using GarmentFactoryBusinessLogic.BusinessLogics;
using GarmentFactoryContracts.BusinessLogicsContracts; using GarmentFactoryContracts.BusinessLogicsContracts;
using GarmentFactoryContracts.StoragesContracts; using GarmentFactoryContracts.StoragesContracts;
using GarmentFactoryListImplement.Implements;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging; using NLog.Extensions.Logging;
using GarmentFactoryFileImplement.Implements;
using System.Drawing; using System.Drawing;
namespace GarmentFactoryView namespace GarmentFactoryView
@ -33,6 +33,7 @@ namespace GarmentFactoryView
services.AddTransient<IOrderStorage, OrderStorage>(); services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<ITextileStorage, TextileStorage>(); services.AddTransient<ITextileStorage, TextileStorage>();
services.AddTransient<IShopStorage, ShopStorage>(); services.AddTransient<IShopStorage, ShopStorage>();
services.AddTransient<IComponentLogic, ComponentLogic>(); services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>(); services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<ITextileLogic, TextileLogic>(); services.AddTransient<ITextileLogic, TextileLogic>();
@ -48,7 +49,8 @@ namespace GarmentFactoryView
services.AddTransient<FormShop>(); services.AddTransient<FormShop>();
services.AddTransient<FormShops>(); services.AddTransient<FormShops>();
services.AddTransient<FormMakeDelivery>(); services.AddTransient<FormMakeDelivery>();
} services.AddTransient<FormTextileSale>();
}
} }
} }