using LSFE.Infrastructure.Model; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Entities.Maintenance { [Table("InventoryTransaction")] public class InventoryTransaction { [Key] public Guid InventoryTransId { get; set; } public Guid InventoryId { get; set; } public Guid MRRawPlanId { get; set; } public int DoctorId { get; set; } public string? Description { get; set; } public DateOnly? AppointmentDate { get; set; } public DateTime CreatedDate { get; set; } public int QtyIn { get; set; } public int QtyOut { get; set; } public string? UserId { get; set; } public string? CreatedBy { get; set; } public bool IsActive { get; set; } public string? UpdatedBy { get; set; } public DateTime? UpdatedDate { get; set; } public byte IconEmojiId { get; set; } } }