21 lines
583 B
C#
21 lines
583 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using FluentNHibernate.Mapping;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public class ProductGroup
|
|
{
|
|
public virtual int ProductGroupID { get; set; }
|
|
public virtual string Name { get; set; }
|
|
public virtual decimal DiscountLimit { get; set; }
|
|
public virtual bool IsModifierCompulsory { get; set; }
|
|
public virtual IList<Product> Products { get; set; }
|
|
public ProductGroup()
|
|
{
|
|
Products = new List<Product>();
|
|
}
|
|
}
|
|
}
|