2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
|
|
|
{
|
|
|
|
|
public class ProductDisplaySmallBO
|
|
|
|
|
{
|
2014-08-08 12:05:38 +00:00
|
|
|
|
public Guid ProductID { get; set; }
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public int Code { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public decimal Price { get; set; }
|
2013-11-30 11:12:08 +00:00
|
|
|
|
public string ProuctGroup { get; set; }
|
|
|
|
|
public string Vat { get; set; }
|
|
|
|
|
public string ServiceTax { get; set; }
|
2010-03-02 17:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|