vendor я напишу

This commit is contained in:
dex_moth 2024-04-30 15:57:30 +04:00 committed by bekodeg
parent 95b2759a12
commit 34ada3ab98
7 changed files with 89 additions and 17 deletions

View File

@ -10,8 +10,6 @@ namespace ComputerHardwareStoreContracts.ViewModels
public string Name { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> CannedComponents { get; set; } = new();
public Dictionary<int, (IComponentModel, int)> ProductComponents => throw new NotImplementedException();
public Dictionary<int, (IComponentModel, int)> ProductComponents { get; set; } = new();
}
}

View File

@ -32,5 +32,8 @@ namespace ComputerHardwareStoreDatabaseImplement
public virtual DbSet<Product> Products { set; get; }
public virtual DbSet<ProductComponent> ProductComponents { set; get; }
public virtual DbSet<OrderProduct> OrderProducts { set; get; }
public virtual DbSet<StoreKeeper> StoreKeepers { set; get; }
public virtual DbSet<Build> Builds { set; get; }
}
}

View File

@ -0,0 +1,22 @@

using ComputerHardwareStoreDataModels.Models;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ComputerHardwareStoreDatabaseImplement.Models
{
public class Build : IBuildModel
{
public int Id { get; private set; }
[Required]
public string Name { get; private set; } = string.Empty;
[Required]
public double Price { get; set; }
[Required]
public int VendorId { get; private set; }
public virtual Vendor Vendor { get; private set; } = new();
[ForeignKey("BuildId")]
public Dictionary<int, (IComponentModel, int)> BuildComponents => throw new NotImplementedException();
}
}

View File

@ -13,9 +13,13 @@ namespace ComputerHardwareStoreDatabaseImplement.Models
public string Name { get; private set; } = string.Empty;
[Required]
public double Cost { get; set; }
[Required]
public int StoreKeeperId { get; private set; }
public virtual StoreKeeper? StoreKeeper { get; set; }
[ForeignKey("ComponentId")]
public virtual List<ProductComponent> ProductComponents { get; set; } = new();
public static Component? Create(ComponentBindingModel model)
public static Component? Create(ComputerHardwareStoreDBContext context, ComponentBindingModel model)
{
if (model == null)
{
@ -25,7 +29,8 @@ namespace ComputerHardwareStoreDatabaseImplement.Models
{
Id = model.Id,
Name = model.Name,
Cost = model.Cost
Cost = model.Cost,
StoreKeeper = context.StoreKeepers.First(x => x.Id == model.StoreKeeperId)
};
}
public void Update (ComponentBindingModel model)
@ -44,7 +49,5 @@ namespace ComputerHardwareStoreDatabaseImplement.Models
Name = Name,
Cost = Cost
};
public int StoreKeeperId => throw new NotImplementedException();
}
}

View File

@ -51,14 +51,7 @@ namespace ComputerHardwareStoreDatabaseImplement.Models
Status = model.Status,
DateCreate = model.DateCreate,
DateImplement = model.DateImplement,
Products = model.OrderProducts
.Select(op => new OrderProduct()
{
OrderId = model.Id,
ProductId = op.Key,
Count = op.Value.Item2
})
.ToList()
Product = context.Products.First(x => x.Id == model.ProductId)
};
}
public void Update(OrderBindingModel model)
@ -78,5 +71,7 @@ namespace ComputerHardwareStoreDatabaseImplement.Models
DateCreate = DateCreate,
DateImplement = DateImplement,
};
public Dictionary<int, (IProductModel, int)> OrderProduct => throw new NotImplementedException();
}
}

View File

@ -23,8 +23,7 @@ namespace ComputerHardwareStoreDatabaseImplement.Models
if (_productComponents == null)
{
_productComponents = Components
.ToDictionary(c => c.ComponentId, c =>
(c.Component as IComponentModel, c.Count));
.ToDictionary(c => c.ComponentId, c => (c.Component as IComponentModel, c.Count));
}
return _productComponents;
}

View File

@ -0,0 +1,52 @@
using ComputerHardwareStoreContracts.BindingModels;
using ComputerHardwareStoreContracts.ViewModels;
using ComputerHardwareStoreDataModels.Models;
using System.ComponentModel.DataAnnotations;
namespace ComputerHardwareStoreDatabaseImplement.Models
{
public class StoreKeeper : IStoreKeeperModel
{
public int Id { get; private set; }
[Required]
public string Name { get; private set; } = string.Empty;
[Required]
public string Login { get; private set; } = string.Empty;
[Required]
public string Password { get; private set; } = string.Empty;
public static StoreKeeper? Create(ComputerHardwareStoreDBContext context, StoreKeeperBindingModel model)
{
if (model == null)
{
return null;
}
return new StoreKeeper()
{
Id = model.Id,
Name = model.Name,
Login = model.Login,
Password = model.Password,
};
}
public void Update(StoreKeeperBindingModel model)
{
if (model == null)
{
return;
}
Name = string.IsNullOrEmpty(model.Name) ? Name : model.Name;
Password = string.IsNullOrEmpty(model.Password) ? Password : model.Password;
}
public StoreKeeperViewModel GetViewModel => new()
{
Id = Id,
Name = Name,
Login = Login,
Password = Password
};
}
}