using AutomobilePlantContracts.BindingModels; using AutomobilePlantContracts.ViewModels; using AutomobilePlantDataModels.Models; using System.ComponentModel.DataAnnotations; namespace AutomobilePlantDatabaseImplement.Models { public class MessageInfo : IMessageInfoModel { [Key] public string MessageId { get; private set; } = string.Empty; public int? ClientId { get; private set; } public string SenderName { get; private set; } = string.Empty; public DateTime DateDelivery { get; private set; } = DateTime.Now; public string Subject { get; private set; } = string.Empty; public string Body { get; private set; } = string.Empty; public bool IsReaded { get; private set; } public string? Reply { get; private set; } public virtual Client? Client { get; private set; } public static MessageInfo? Create(MessageInfoBindingModel model) { if (model == null) { return null; } return new() { Body = model.Body, Subject = model.Subject, ClientId = model.ClientId, MessageId = model.MessageId, SenderName = model.SenderName, DateDelivery = model.DateDelivery, IsReaded = model.IsReaded, Reply = model.Reply }; } public void Update(MessageInfoBindingModel model) { if (model == null) { return; } Reply = model.Reply; IsReaded = model.IsReaded; } public MessageInfoViewModel GetViewModel => new() { Body = Body, Subject = Subject, ClientId = ClientId, MessageId = MessageId, SenderName = SenderName, DateDelivery = DateDelivery, Reply = Reply, IsReaded = IsReaded, }; } }