Fixes the estimation total
This commit is contained in:
parent
2b02d8c01a
commit
59daaaef53
9 changed files with 54 additions and 47 deletions
|
|
@ -25,6 +25,18 @@ namespace BookAStar.Pages
|
|||
BindingContext = model;
|
||||
}
|
||||
|
||||
protected override void OnBindingContextChanged()
|
||||
{
|
||||
base.OnBindingContextChanged();
|
||||
((EditEstimateViewModel)BindingContext).PropertyChanged += EditEstimatePage_PropertyChanged;
|
||||
|
||||
}
|
||||
|
||||
private void EditEstimatePage_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
protected void OnNewCommanLine(object sender, EventArgs e)
|
||||
{
|
||||
var com = new BillingLine() { Count = 1, UnitaryCost = 0.01m };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue