2011-03-11 18:49:48 +00:00
|
|
|
|
using System.Collections.Generic;
|
2011-02-18 16:54:48 +00:00
|
|
|
|
using Tanshu.Accounts.Contracts;
|
2014-10-12 09:41:45 +00:00
|
|
|
|
using NHibernate.Mapping.ByCode.Conformist;
|
|
|
|
|
using NHibernate.Mapping.ByCode;
|
|
|
|
|
using System;
|
2011-01-22 12:38:30 +00:00
|
|
|
|
|
2011-01-30 07:14:05 +00:00
|
|
|
|
namespace Tanshu.Accounts.Entities
|
2011-01-22 12:38:30 +00:00
|
|
|
|
{
|
2011-01-30 07:14:05 +00:00
|
|
|
|
public class ProductGroup
|
2011-01-22 12:38:30 +00:00
|
|
|
|
{
|
2011-03-11 18:49:48 +00:00
|
|
|
|
public ProductGroup()
|
|
|
|
|
{
|
|
|
|
|
Products = new List<Product>();
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-12 09:41:45 +00:00
|
|
|
|
public virtual Guid ProductGroupID { get; set; }
|
2011-03-11 18:49:48 +00:00
|
|
|
|
|
2011-01-30 07:14:05 +00:00
|
|
|
|
public virtual string Name { get; set; }
|
|
|
|
|
public virtual decimal DiscountLimit { get; set; }
|
|
|
|
|
public virtual bool IsModifierCompulsory { get; set; }
|
2014-10-16 11:11:55 +00:00
|
|
|
|
public virtual bool IsActive { get; set; }
|
2011-06-29 20:27:07 +00:00
|
|
|
|
public virtual int SortOrder { get; set; }
|
2011-02-09 12:03:22 +00:00
|
|
|
|
public virtual string GroupType { get; set; }
|
2011-01-30 07:14:05 +00:00
|
|
|
|
public virtual IList<Product> Products { get; set; }
|
2014-10-12 09:41:45 +00:00
|
|
|
|
public virtual IList<PrintLocation> PrintLocations { get; set; }
|
|
|
|
|
public virtual IList<ProductGroupModifier> ProductGroupModifiers { get; set; }
|
|
|
|
|
}
|
|
|
|
|
public class ProductGroupMap : ClassMapping<ProductGroup>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public ProductGroupMap()
|
|
|
|
|
{
|
|
|
|
|
Table("ProductGroups");
|
|
|
|
|
Schema("dbo");
|
|
|
|
|
Lazy(true);
|
|
|
|
|
Id(x => x.ProductGroupID, map => map.Generator(Generators.GuidComb));
|
|
|
|
|
Property(x => x.Name, map => { map.NotNullable(true); map.Unique(true); });
|
2014-10-16 11:11:55 +00:00
|
|
|
|
Property(x => x.IsActive, map => map.NotNullable(true));
|
2014-10-12 09:41:45 +00:00
|
|
|
|
Property(x => x.SortOrder, map => map.NotNullable(true));
|
|
|
|
|
Property(x => x.DiscountLimit, map => map.NotNullable(true));
|
|
|
|
|
Property(x => x.IsModifierCompulsory, map => map.NotNullable(true));
|
|
|
|
|
Property(x => x.GroupType, map => map.NotNullable(true));
|
|
|
|
|
Bag(x => x.PrintLocations, colmap => { colmap.Key(x => x.Column("ProductGroupID")); colmap.Inverse(true); }, map => { map.OneToMany(); });
|
|
|
|
|
Bag(x => x.ProductGroupModifiers, colmap => { colmap.Key(x => x.Column("ProductGroupID")); colmap.Inverse(true); }, map => { map.OneToMany(); });
|
|
|
|
|
Bag(x => x.Products, colmap => { colmap.Key(x => x.Column("ProductGroupID")); colmap.Inverse(true); }, map => { map.OneToMany(); });
|
|
|
|
|
}
|
2011-01-22 12:38:30 +00:00
|
|
|
|
}
|
2011-03-11 18:49:48 +00:00
|
|
|
|
}
|