BankProject/Client/Account.cs
GabrielTofvesson fc9bbb1d6b * Partially reworked key event system
* Reworked padding rendering (now handled natively by View)
* Fixed how ConsoleController renders dirty views
* Explicitly added padding to the LayoutMeta dimensions computation
* Added support for updating passwords in SessionContext
* Completed account display system
* Added many more resources
* Simplified internationalization
* Added clientside representations for accounts and transations
* MOAR COMMENTS!
* Optimized account serialization
* Corrected issue where copying a user simply copied references to the user accounts; not actually copying accounts (which caused jank)
* Fixed timestamp for TimeStampWriter
* Probably some other minor things
2018-05-14 22:43:03 +02:00

53 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client
{
public class Account
{
public decimal balance;
string owner;
public List<Transaction> History { get; }
public Account(decimal balance)
{
History = new List<Transaction>();
this.balance = balance;
}
public Account(Account copy) : this(copy.balance)
=> History.AddRange(copy.History);
public Account AddTransaction(Transaction tx)
{
History.Add(tx);
return this;
}
public static Account Parse(string s)
{
var data = s.Split('{');
if(!decimal.TryParse(data[0], out var balance))
throw new ParseException("String did not represent a valid account");
Account a = new Account(balance);
for (int i = 1; i < data.Length; ++i)
a.AddTransaction(Transaction.Parse(data[i]));
return a;
}
public static bool TryParse(string s, out Account account)
{
try
{
account = Account.Parse(s);
return true;
}
catch
{
account = null;
return false;
}
}
}
}