First create solution

This commit is contained in:
2017-03-08 11:21:27 +01:00
commit a2fb86bacf
5508 changed files with 1082238 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Nuvolar.Module.BusinessObjects
{
public partial class CostPlannerRows
{
protected override void OnSaving()
{
base.OnSaving();
}
protected override void OnChanged(string propertyName, object oldValue, object newValue)
{
base.OnChanged(propertyName, oldValue, newValue);
if (propertyName == "QTT"||propertyName== "PriceInHUF" || propertyName== "PriceOutHUF")
{
this.AmountInHUF = this.QTT * this.PriceInHUF;
this.AmountOutHUF = this.QTT * this.PriceOutHUF;
}
}
}
}