0172fc4e01
Added Nc Option in settlement Merged Vouchers and SaleVoucher table. Need to update the Sql Schema
20 lines
571 B
C#
20 lines
571 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public class ProductBO
|
|
{
|
|
public Guid ProductID { get; set; }
|
|
public int Code { get; set; }
|
|
public string Name { get; set; }
|
|
public string Units { get; set; }
|
|
public Guid ProductGroupID { get; set; }
|
|
public Guid VatID { get; set; }
|
|
public Guid ServiceTaxID { get; set; }
|
|
public decimal SalePrice { get; set; }
|
|
public bool Discontinued { get; set; }
|
|
public int SortOrder { get; set; }
|
|
}
|
|
}
|