Implemented displaying errors.

This commit is contained in:
Tobias Erbshäußer
2020-06-10 13:31:48 +02:00
parent 0300090806
commit 9313ecb775
17 changed files with 1800 additions and 11 deletions
+21
View File
@@ -0,0 +1,21 @@
using UCalc.Data;
namespace UCalc.Models
{
public class BillingModel : Model
{
public LandlordModel LandlordModel { get; }
public BillingModel(Billing billing)
{
LandlordModel = new LandlordModel(billing.Landlord);
Properties = LandlordModel.Properties;
}
public override void Apply()
{
LandlordModel.Apply();
}
}
}