25 lines
749 B
C#
25 lines
749 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Canvass
|
|
{
|
|
public class PerSupplier
|
|
{
|
|
[Key]
|
|
public int SupplierId { get; set; }
|
|
public string? SupplierName { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public string? ContactNo { get; set;}
|
|
public string? ContactPerson { get; set; }
|
|
public string? Address { get; set;}
|
|
public string? AggreItemName { get; set; }
|
|
public string? AggreItemNo { get; set; }
|
|
public string? AggrePRNo { get; set; }
|
|
}
|
|
}
|