Removed underscores
This commit is contained in:
parent
433fcd122b
commit
f836479b1d
|
@ -72,12 +72,12 @@ namespace CryptoCalc
|
||||||
|
|
||||||
public Transaction() { SetDBStrings(); }
|
public Transaction() { SetDBStrings(); }
|
||||||
|
|
||||||
public Transaction(string _currency, float _amount, string _type)
|
public Transaction(string currency, float amount, string type)
|
||||||
{
|
{
|
||||||
SaveUnixTimeNow();
|
SaveUnixTimeNow();
|
||||||
Currency = _currency;
|
Currency = currency;
|
||||||
Amount = _amount;
|
Amount = amount;
|
||||||
TransactionType = _type;
|
TransactionType = type;
|
||||||
|
|
||||||
Platform = "";
|
Platform = "";
|
||||||
Note = "";
|
Note = "";
|
||||||
|
|
Loading…
Reference in New Issue