Skip to content

Commit

Permalink
Fix Assignment 182 which is now step 173
Browse files Browse the repository at this point in the history
  • Loading branch information
JonthueM committed Jul 7, 2020
1 parent 5c625c0 commit 8f8962a
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 3 deletions.
Binary file modified step182-IQuit/.vs/step182-IQuit/v16/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion step182-IQuit/Employee.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public override void SayName()
}
public void Quit()
{
string iQuit = "has Quit";
string iQuit = $"{firstName} {lastName} has Quit";
Console.WriteLine(iQuit);
}
}
Expand Down
5 changes: 3 additions & 2 deletions step182-IQuit/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ class Program
{
static void Main(string[] args)
{
Employee iQuite = new Employee() {firstName = "Jonthue", lastName = "Michel" };
iQuite.SayName(); iQuite.Quit();
IQuittable iQuite = new Employee() { firstName = "Jonthue", lastName = "Michel" };

iQuite.Quit();
Console.ReadLine();

}
Expand Down
Binary file modified step182-IQuit/bin/Debug/step182-IQuit.exe
Binary file not shown.
Binary file modified step182-IQuit/bin/Debug/step182-IQuit.pdb
Binary file not shown.
Binary file not shown.
Binary file modified step182-IQuit/obj/Debug/step182-IQuit.exe
Binary file not shown.
Binary file modified step182-IQuit/obj/Debug/step182-IQuit.pdb
Binary file not shown.

0 comments on commit 8f8962a

Please sign in to comment.