26 lines
973 B
C#
26 lines
973 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Canvass.Request
|
|
{
|
|
public class SupplierRequest
|
|
{
|
|
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 long ItemNo { get; set; } = 0;
|
|
public string Website { get; set; } = string.Empty;
|
|
}
|
|
}
|