Finally Deployed. Don't know the total amount of changes.

This commit is contained in:
tanshu
2014-11-06 16:09:11 +05:30
parent dc3576437f
commit 948cd0bf28
34 changed files with 389 additions and 990 deletions

View File

@ -9,7 +9,8 @@ namespace Tanshu.Accounts.Entities
{
public virtual Guid ReprintID { get; set; }
public virtual User User { get; set; }
public virtual DateTime Date { get; set; }
protected DateTime _date;
public virtual DateTime Date { get { return _date; } }
public virtual Voucher Voucher { get; set; }
}
public class ReprintMap : ClassMapping<Reprint>
@ -26,6 +27,7 @@ namespace Tanshu.Accounts.Entities
{
map.NotNullable(true);
map.Generated(PropertyGeneration.Insert);
map.Access(Accessor.NoSetter);
});
ManyToOne(x => x.User, map =>
{