using CPRNIMS.Infrastructure.Models.Account; 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 CPRNIMS.Infrastructure.Entities.Purchasing { [Table("PR")] public class PR { [Key] public long PRId { get; set; } public long PRNo { get; set; } public string? NewPRNo { get; set; } public int ProjectCodeId { get; set; } public long ItemCartId { get; set; } public string? UserId { get; set; } public bool IsActive { get; set; } } }