narsil/Tanshu.Accounts.Contracts/Data Contracts/ProductDisplaySmallBO.cs
Amritanshu 82f3b6b3e7 Fix: Products edit form vat and st were mixed in combobox.
Fix: Removed MinimumLevel and MaximumLevel from products.
2013-11-30 16:42:08 +05:30

17 lines
446 B
C#

using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public class ProductDisplaySmallBO
{
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; }
public Guid ProductID { get; set; }
}
}