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