narsil/Tanshu.Accounts.Contracts/Data Contracts/ProductDisplaySmallBO.cs
unknown 0172fc4e01 Added Service Tax and CIN Information to the bill printout
Added Nc Option in settlement
Merged Vouchers and SaleVoucher table. Need to update the Sql Schema
2014-08-08 17:35:38 +05:30

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; }
}
}