0172fc4e01
Added Nc Option in settlement Merged Vouchers and SaleVoucher table. Need to update the Sql Schema
17 lines
446 B
C#
17 lines
446 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public class ProductDisplaySmallBO
|
|
{
|
|
public Guid ProductID { get; set; }
|
|
public int Code { get; set; }
|
|
public string Name { get; set; }
|
|
public decimal Price { get; set; }
|
|
public string ProuctGroup { get; set; }
|
|
public string Vat { get; set; }
|
|
public string ServiceTax { get; set; }
|
|
}
|
|
}
|