Variable name changes
This commit is contained in:
parent
bf3651300e
commit
b8acdd8e48
|
@ -138,7 +138,7 @@ namespace CryptoCalc
|
||||||
public string Currency { get; set; }
|
public string Currency { get; set; }
|
||||||
public float Balance { get; set; }
|
public float Balance { get; set; }
|
||||||
public int DefaultWallet { get; set; }
|
public int DefaultWallet { get; set; }
|
||||||
public string Notes { get; set; }
|
public string Note { get; set; }
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ namespace CryptoCalc
|
||||||
Currency = _currency;
|
Currency = _currency;
|
||||||
Balance = _balance;
|
Balance = _balance;
|
||||||
DefaultWallet = _default;
|
DefaultWallet = _default;
|
||||||
Notes = _note;
|
Note = _note;
|
||||||
|
|
||||||
SetDBStrings();
|
SetDBStrings();
|
||||||
}
|
}
|
||||||
|
@ -184,7 +184,7 @@ namespace CryptoCalc
|
||||||
+ $"@{nameof(Currency)},"
|
+ $"@{nameof(Currency)},"
|
||||||
+ $"@{nameof(Balance)},"
|
+ $"@{nameof(Balance)},"
|
||||||
+ $"@{nameof(DefaultWallet)},"
|
+ $"@{nameof(DefaultWallet)},"
|
||||||
+ $"@{nameof(Notes)}";
|
+ $"@{nameof(Note)}";
|
||||||
}
|
}
|
||||||
|
|
||||||
//public string FullInfo => $"{ Index.ToString() } { DateTimeString } { Currency } { Amount } { TransactionType }";
|
//public string FullInfo => $"{ Index.ToString() } { DateTimeString } { Currency } { Amount } { TransactionType }";
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue