using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using BMA.EHR.Report.Service.Models; namespace BMA.EHR.Profile.Service.Models.HR { public class ProfileTraining : EntityBase { [MaxLength(200)] public string? Name { get; set; } [MaxLength(200)] public string? Topic { get; set; } [MaxLength(200)] public int? Yearly { get; set; } [MaxLength(200)] public string? Place { get; set; } [MaxLength(200)] public string? Duration { get; set; } [MaxLength(200)] public string? Department { get; set; } [MaxLength(200)] public string? NumberOrder { get; set; } public DateTime? DateOrder { get; set; } public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } // public string? Course { get; set; } // public DateTime? Start { get; set; } // public DateTime? End { get; set; } // public string? Location { get; set; } // public string? Detail { get; set; } // public string? Organize { get; set; } // public string? Gen { get; set; } public virtual List ProfileTrainingHistorys { get; set; } = new List(); public virtual Profile? Profile { get; set; } } }