Computer_Hardware_Store/HardwareShop/HardwareShopDatabaseImplement/Models/User.cs

83 lines
2.3 KiB
C#
Raw Normal View History

using HardwareShopDataModels.Models;
using HardwareShopDataModels.Enums;
using HardwareShopContracts.BindingModels;
using HardwareShopContracts.ViewModels;
using HardwareShopDatabaseImplement.Models.Storekeeper;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using HardwareShopDatabaseImplement.Models.Worker;
namespace HardwareShopDatabaseImplement.Models
{
public class User : IUserModel
{
public int Id { get; set; }
[Required]
public string Login { get; set; } = string.Empty;
[Required]
public string Email { get; set; } = string.Empty;
[Required]
public string Password { get; set; } = string.Empty;
[Required]
public UserRole Role { get; set; } = UserRole.Неизвестен;
[ForeignKey("ClientId")]
public virtual List<Order> Orders { get; set; } = new();
[ForeignKey("ClientId")]
public virtual List<Build> Builds { get; set; } = new();
[ForeignKey("ClientId")]
public virtual List<Comment> Comments { get; set; } = new();
[ForeignKey("ClientId")]
public virtual List<Purchase> Purchases { get; set; } = new();
[ForeignKey("ClientId")]
public virtual List<Component> Components { get; set; } = new();
[ForeignKey("ClientId")]
public virtual List<Good> Goods { get; set; } = new();
public static User? Create(UserBindingModel? model)
{
if (model == null)
{
return null;
}
return new User()
{
Id = model.Id,
Login = model.Login,
Email = model.Email,
Password = model.Password,
Role = model.Role
};
}
public void Update(UserBindingModel? model)
{
if (model == null)
{
return;
}
Login = model.Login;
Password = model.Password;
Email = model.Email;
}
public UserViewModel GetViewModel => new()
{
Id = Id,
Login = Login,
Email = Email,
Password = Password,
Role = Role,
};
}
}