Moved numpad control to Tanshu.Common. Billing feature complete. Delete not working as expected
Signed-off-by: unknown <tanshu@.(none)>
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using FluentNHibernate.Mapping;
|
||||
using System.Collections.Generic;
|
||||
using Tanshu.Accounts.Contracts;
|
||||
|
||||
namespace Tanshu.Accounts.Entities
|
||||
{
|
||||
@ -9,6 +11,9 @@ namespace Tanshu.Accounts.Entities
|
||||
public virtual int ModifierID { get; set; }
|
||||
public virtual string Name { get; set; }
|
||||
|
||||
[NotNull]
|
||||
public virtual IList<ProductGroupModifier> ProductGroupModifiers { get; set; }
|
||||
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return ModifierID.GetHashCode() ^ Name.GetHashCode();
|
||||
|
||||
Reference in New Issue
Block a user