30 lines
1.1 KiB
C#
30 lines
1.1 KiB
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; } = string.Empty;
|
|
public bool IsActive { get; set; } = true;
|
|
public string ContactNo { get; set; } = string.Empty;
|
|
public string ContactPerson { get; set; } = string.Empty;
|
|
public string LeadTime { get; set; } = string.Empty;
|
|
public bool IsVatable { get; set; }=false;
|
|
public byte PaymentTermsId { get; set; } = 1;
|
|
public byte CurrencyId { get; set; } = 1;
|
|
public string TinNo { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public string Website { get; set; } = string.Empty;
|
|
}
|
|
}
|