NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Canvass/Suppliers.cs

30 lines
995 B
C#

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.Canvass
{
[Table("Suppliers")]
public class Suppliers
{
[Key]
public int SupplierId { get; set; }
public string SupplierName { get; set; } = string.Empty;
public string? EmailAddress { get; set; }
public bool IsActive { get; set; }
public string? ContactNo { get; set; }
public string? ContactPerson { get; set; }
public string? LeadTime { get; set; }
public bool? IsVatable { get; set; }
public byte? PaymentTermsId { get; set; }
public byte? CurrencyId { get; set; }
public string? TinNo { get; set; }
public string? Address { get; set; }
public string? Website { get; set; }
}
}