narsil/Tanshu.Accounts.Contracts/Data Contracts/ProductBO.cs

20 lines
571 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
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; }
2010-03-02 17:56:21 +00:00
public bool Discontinued { get; set; }
public int SortOrder { get; set; }
}
}