├── 01.Defining Classes - Exercise ├── Company Roster │ ├── App.config │ ├── Company Roster.csproj │ ├── Employee.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── StartUp.cs └── Oldest Family Member │ ├── App.config │ ├── Family.cs │ ├── Oldest Family Member.csproj │ ├── Person.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── StartUp.cs ├── 02.Encapsulation - Exercise ├── AnimalFarm │ ├── AnimalFarm.csproj │ ├── AnimalFarm.zip │ ├── App.config │ ├── Models │ │ └── Chicken.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── AnimalFarm.exe │ │ │ ├── AnimalFarm.exe.config │ │ │ └── AnimalFarm.pdb │ └── obj │ │ └── Debug │ │ ├── AnimalFarm.csproj.FileListAbsolute.txt │ │ ├── AnimalFarm.exe │ │ ├── AnimalFarm.pdb │ │ ├── CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── ClassBox │ ├── App.config │ ├── Box.cs │ ├── ClassBox.csproj │ ├── ClassBox.zip │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── ClassBox.exe │ │ │ ├── ClassBox.exe.config │ │ │ └── ClassBox.pdb │ └── obj │ │ └── Debug │ │ ├── ClassBox.csproj.FileListAbsolute.txt │ │ ├── ClassBox.csprojResolveAssemblyReference.cache │ │ ├── ClassBox.exe │ │ ├── ClassBox.pdb │ │ ├── CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── ShoppingSpree │ ├── App.config │ ├── Person.cs │ ├── Product.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ShoppingSpree.csproj │ ├── ShoppingSpree.zip │ ├── bin │ └── Debug │ │ ├── ShoppingSpree.exe │ │ ├── ShoppingSpree.exe.config │ │ └── ShoppingSpree.pdb │ └── obj │ └── Debug │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── ShoppingSpree.csproj.FileListAbsolute.txt │ ├── ShoppingSpree.csprojResolveAssemblyReference.cache │ ├── ShoppingSpree.exe │ └── ShoppingSpree.pdb ├── 03.Defining Classes & Encapsulation - Exercise ├── FamilyTree │ ├── App.config │ ├── FamilyTree.csproj │ ├── Person.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── FamilyTree.exe │ │ │ ├── FamilyTree.exe.config │ │ │ └── FamilyTree.pdb │ └── obj │ │ └── Debug │ │ ├── CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── FamilyTree.csproj.FileListAbsolute.txt │ │ ├── FamilyTree.csprojResolveAssemblyReference.cache │ │ ├── FamilyTree.exe │ │ └── FamilyTree.pdb ├── Pizza │ ├── App.config │ ├── Dough.cs │ ├── Pizza.cs │ ├── Pizza.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Topping.cs │ ├── bin │ │ └── Debug │ │ │ ├── Pizza.exe │ │ │ ├── Pizza.exe.config │ │ │ └── Pizza.pdb │ └── obj │ │ └── Debug │ │ ├── CoreCompileInputs.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Pizza.csproj.FileListAbsolute.txt │ │ ├── Pizza.csprojResolveAssemblyReference.cache │ │ ├── Pizza.exe │ │ └── Pizza.pdb └── Rectangle Intersection │ ├── 09.Rectangle Intersection.csproj │ ├── App.config │ ├── Properties │ └── AssemblyInfo.cs │ ├── Rectangle.cs │ ├── StartUp.cs │ ├── bin │ └── Debug │ │ ├── 09.Rectangle Intersection.exe │ │ ├── 09.Rectangle Intersection.exe.config │ │ └── 09.Rectangle Intersection.pdb │ └── obj │ └── Debug │ ├── 09.Rectangle Intersection.csproj.FileListAbsolute.txt │ ├── 09.Rectangle Intersection.csprojResolveAssemblyReference.cache │ ├── 09.Rectangle Intersection.exe │ ├── 09.Rectangle Intersection.pdb │ ├── CoreCompileInputs.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── 04.Inheritance - Exercise ├── Mankind │ ├── App.config │ ├── Human.cs │ ├── Mankind.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Startup.cs │ ├── Student.cs │ └── Worker.cs └── Person │ ├── App.config │ ├── Child.cs │ ├── Person.cs │ ├── Person.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── Startup.cs ├── 05.Polymorphism - Exercise ├── 01.Vehicles │ ├── App.config │ ├── Car.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Startup.cs │ ├── Truck.cs │ ├── Vehicle.cs │ └── Vehicles.csproj └── 02.Vehicles Extension │ ├── App.config │ ├── Models │ ├── Bus.cs │ ├── Car.cs │ ├── Truck.cs │ └── Vehicle.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Startup.cs │ └── Vehicles.csproj ├── 06.Inheritance & Polymorphism - Exercise ├── MordorsCrueltyPlan │ ├── App.config │ ├── Factories │ │ ├── FoodFactory.cs │ │ └── MoodFactory.cs │ ├── Models │ │ ├── Food.cs │ │ ├── Foods │ │ │ ├── Apple.cs │ │ │ ├── Cram.cs │ │ │ ├── HoneyCake.cs │ │ │ ├── Junk.cs │ │ │ ├── Lembas.cs │ │ │ ├── Melon.cs │ │ │ └── Mushrooms.cs │ │ ├── Gandalf.cs │ │ ├── Mood.cs │ │ └── Moods │ │ │ ├── Angry.cs │ │ │ ├── Happy.cs │ │ │ ├── JavaScript.cs │ │ │ └── Sad.cs │ ├── MordorsCrueltyPlan.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs └── WildFarm │ ├── App.config │ ├── Factories │ ├── AnimalFactory.cs │ └── FoodFactory.cs │ ├── Models │ ├── Animal.cs │ ├── Animals │ │ ├── Cat.cs │ │ ├── Mouse.cs │ │ ├── Tiger.cs │ │ └── Zebra.cs │ ├── Felime.cs │ ├── Food.cs │ ├── Foods │ │ ├── Meat.cs │ │ └── Vegetable.cs │ └── Mammal.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── WildFarm.csproj ├── ExamPrepLiveDemo ├── ExamPrepLiveDemo.sln └── NFS │ ├── App.config │ ├── ClassDiagram1.cd │ ├── Core │ ├── CarManager.cs │ └── Engine.cs │ ├── Entities │ ├── Cars │ │ ├── Car.cs │ │ ├── PerformanceCar.cs │ │ └── ShowCar.cs │ ├── Garage.cs │ └── Races │ │ ├── CasualRace.cs │ │ ├── DragRace.cs │ │ ├── DriftRace.cs │ │ └── Race.cs │ ├── NFS.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── StartUp.cs │ ├── Utilities │ └── Constants.cs │ ├── bin │ └── Debug │ │ ├── NFS.exe │ │ ├── NFS.exe.config │ │ ├── NFS.pdb │ │ └── nunit_random_seed.tmp │ └── obj │ └── Debug │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── NFS.csproj.FileListAbsolute.txt │ ├── NFS.csprojResolveAssemblyReference.cache │ ├── NFS.exe │ └── NFS.pdb ├── LICENSE ├── Live ├── AvatarLiveDemo │ ├── App.config │ ├── AvatarLiveDemo.csproj │ ├── Core │ │ ├── Engine.cs │ │ └── NationsBuilder.cs │ ├── Entities │ │ ├── Benders │ │ │ ├── AirBender.cs │ │ │ ├── Bender.cs │ │ │ ├── EarthBender.cs │ │ │ ├── FireBender.cs │ │ │ └── WaterBender.cs │ │ ├── Monuments │ │ │ ├── AirMonument.cs │ │ │ ├── EarthMonument.cs │ │ │ ├── FireMonument.cs │ │ │ ├── Monument.cs │ │ │ └── WaterMonument.cs │ │ └── Nation.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── AvatarLiveDemo.exe │ │ │ ├── AvatarLiveDemo.exe.config │ │ │ └── AvatarLiveDemo.pdb │ └── obj │ │ └── Debug │ │ ├── AvatarLiveDemo.csproj.FileListAbsolute.txt │ │ ├── AvatarLiveDemo.csprojResolveAssemblyReference.cache │ │ ├── AvatarLiveDemo.exe │ │ ├── AvatarLiveDemo.pdb │ │ ├── CoreCompileInputs.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── Live.sln └── NeedForSpeed ├── App.config ├── Core ├── CarManager.cs └── Engine.cs ├── Entities ├── Cars │ ├── Car.cs │ ├── PerformanceCar.cs │ └── ShowCar.cs ├── Essentials │ └── Garage.cs └── Races │ ├── NormalRaces │ ├── CasualRace.cs │ ├── CircuitRace.cs │ ├── DragRace.cs │ ├── DriftRace.cs │ └── NormalRace.cs │ ├── Race.cs │ └── SpecialRaces │ └── TimeLimitRace.cs ├── Factories ├── CarFactory.cs └── RaceFactory.cs ├── IO ├── ConsoleReader.cs └── ConsoleWriter.cs ├── NeedForSpeed.csproj ├── Properties └── AssemblyInfo.cs ├── StartUp.cs ├── Tests ├── Bonus │ ├── Bonus.zip │ ├── test.000.001.in.txt │ ├── test.000.001.out.txt │ ├── test.000.002.in.txt │ ├── test.000.002.out.txt │ ├── test.001.in.txt │ ├── test.001.out.txt │ ├── test.002.in.txt │ └── test.002.out.txt ├── BuisnessLogic │ ├── BuisnessLogic.zip │ ├── test.000.001.in.txt │ ├── test.000.001.out.txt │ ├── test.000.002.in.txt │ ├── test.000.002.out.txt │ ├── test.000.003.in.txt │ ├── test.000.003.out.txt │ ├── test.001.in.txt │ ├── test.001.out.txt │ ├── test.002.in.txt │ ├── test.002.out.txt │ ├── test.003.in.txt │ ├── test.003.out.txt │ ├── test.004.in.txt │ ├── test.004.out.txt │ ├── test.005.in.txt │ └── test.005.out.txt ├── IO │ ├── IO.zip │ ├── test.000.001.in.txt │ ├── test.000.001.out.txt │ ├── test.000.002.in.txt │ ├── test.000.002.out.txt │ ├── test.001.in.txt │ ├── test.001.out.txt │ ├── test.002.in.txt │ ├── test.002.out.txt │ ├── test.003.in.txt │ ├── test.003.out.txt │ ├── test.004.in.txt │ └── test.004.out.txt └── Structure │ ├── Structure.zip │ ├── test.000.001.in.txt │ ├── test.000.001.out.txt │ ├── test.000.002.in.txt │ ├── test.000.002.out.txt │ ├── test.000.003.in.txt │ ├── test.000.003.out.txt │ ├── test.001.in.txt │ ├── test.001.out.txt │ ├── test.002.in.txt │ ├── test.002.out.txt │ ├── test.003.in.txt │ ├── test.003.out.txt │ ├── test.004.in.txt │ ├── test.004.out.txt │ ├── test.005.in.txt │ └── test.005.out.txt └── Utilities ├── Constants.cs └── InputParser.cs /01.Defining Classes - Exercise/Company Roster/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Company Roster/App.config -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Company Roster/Company Roster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Company Roster/Company Roster.csproj -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Company Roster/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Company Roster/Employee.cs -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Company Roster/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Company Roster/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Company Roster/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Company Roster/StartUp.cs -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Oldest Family Member/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Oldest Family Member/App.config -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Oldest Family Member/Family.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Oldest Family Member/Family.cs -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Oldest Family Member/Oldest Family Member.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Oldest Family Member/Oldest Family Member.csproj -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Oldest Family Member/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Oldest Family Member/Person.cs -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Oldest Family Member/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Oldest Family Member/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /01.Defining Classes - Exercise/Oldest Family Member/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/01.Defining Classes - Exercise/Oldest Family Member/StartUp.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/AnimalFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/AnimalFarm.csproj -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/AnimalFarm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/AnimalFarm.zip -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/App.config -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/Models/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/Models/Chicken.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/Program.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/bin/Debug/AnimalFarm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/bin/Debug/AnimalFarm.exe -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/bin/Debug/AnimalFarm.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/bin/Debug/AnimalFarm.exe.config -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/bin/Debug/AnimalFarm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/bin/Debug/AnimalFarm.pdb -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/obj/Debug/AnimalFarm.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/obj/Debug/AnimalFarm.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/obj/Debug/AnimalFarm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/obj/Debug/AnimalFarm.exe -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/obj/Debug/AnimalFarm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/obj/Debug/AnimalFarm.pdb -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4fa61a6a2a2717e2e2f369cd900efb6eefa8be5c 2 | -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/AnimalFarm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/AnimalFarm/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/App.config -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/Box.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/ClassBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/ClassBox.csproj -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/ClassBox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/ClassBox.zip -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/Program.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/bin/Debug/ClassBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/bin/Debug/ClassBox.exe -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/bin/Debug/ClassBox.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/bin/Debug/ClassBox.exe.config -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/bin/Debug/ClassBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/bin/Debug/ClassBox.pdb -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.exe -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/obj/Debug/ClassBox.pdb -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 38424be911c816719024a6441263a9d78d2af9f6 2 | -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ClassBox/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ClassBox/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/App.config -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/Person.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/Product.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/Program.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/ShoppingSpree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/ShoppingSpree.csproj -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/ShoppingSpree.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/ShoppingSpree.zip -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/bin/Debug/ShoppingSpree.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/bin/Debug/ShoppingSpree.exe -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/bin/Debug/ShoppingSpree.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/bin/Debug/ShoppingSpree.exe.config -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/bin/Debug/ShoppingSpree.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/bin/Debug/ShoppingSpree.pdb -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a958aeed344de4005b925871708ee13f8e7c687d 2 | -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.exe -------------------------------------------------------------------------------- /02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/02.Encapsulation - Exercise/ShoppingSpree/obj/Debug/ShoppingSpree.pdb -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/App.config -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/FamilyTree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/FamilyTree.csproj -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/Person.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/Program.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/bin/Debug/FamilyTree.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/bin/Debug/FamilyTree.exe -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/bin/Debug/FamilyTree.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/bin/Debug/FamilyTree.exe.config -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/bin/Debug/FamilyTree.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/bin/Debug/FamilyTree.pdb -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 165c2eed13097d0333c10e0b08a15bad720809ea 2 | -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.exe -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/FamilyTree/obj/Debug/FamilyTree.pdb -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/App.config -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/Dough.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/Dough.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/Pizza.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/Pizza.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/Pizza.csproj -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/Program.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/Topping.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/bin/Debug/Pizza.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/bin/Debug/Pizza.exe -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/bin/Debug/Pizza.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/bin/Debug/Pizza.exe.config -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/bin/Debug/Pizza.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/bin/Debug/Pizza.pdb -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1d6155360d368692e5b1f62cbc33ae9174297d00 2 | -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.exe -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Pizza/obj/Debug/Pizza.pdb -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/09.Rectangle Intersection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/09.Rectangle Intersection.csproj -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/App.config -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/Rectangle.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/StartUp.cs -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/bin/Debug/09.Rectangle Intersection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/bin/Debug/09.Rectangle Intersection.exe -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/bin/Debug/09.Rectangle Intersection.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/bin/Debug/09.Rectangle Intersection.exe.config -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/bin/Debug/09.Rectangle Intersection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/bin/Debug/09.Rectangle Intersection.pdb -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.exe -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/09.Rectangle Intersection.pdb -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f8a5fe007dfe75ba308e3282a41c51bdf8e4eef8 2 | -------------------------------------------------------------------------------- /03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/03.Defining Classes & Encapsulation - Exercise/Rectangle Intersection/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Mankind/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Mankind/App.config -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Mankind/Human.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Mankind/Human.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Mankind/Mankind.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Mankind/Mankind.csproj -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Mankind/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Mankind/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Mankind/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Mankind/Startup.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Mankind/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Mankind/Student.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Mankind/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Mankind/Worker.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Person/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Person/App.config -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Person/Child.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Person/Child.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Person/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Person/Person.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Person/Person.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Person/Person.csproj -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Person/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Person/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /04.Inheritance - Exercise/Person/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/04.Inheritance - Exercise/Person/Startup.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/01.Vehicles/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/01.Vehicles/App.config -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/01.Vehicles/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/01.Vehicles/Car.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/01.Vehicles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/01.Vehicles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/01.Vehicles/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/01.Vehicles/Startup.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/01.Vehicles/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/01.Vehicles/Truck.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/01.Vehicles/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/01.Vehicles/Vehicle.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/01.Vehicles/Vehicles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/01.Vehicles/Vehicles.csproj -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/App.config -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/Models/Bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/Models/Bus.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/Models/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/Models/Car.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/Models/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/Models/Truck.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/Models/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/Models/Vehicle.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/Startup.cs -------------------------------------------------------------------------------- /05.Polymorphism - Exercise/02.Vehicles Extension/Vehicles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/05.Polymorphism - Exercise/02.Vehicles Extension/Vehicles.csproj -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/App.config -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Factories/FoodFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Factories/FoodFactory.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Factories/MoodFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Factories/MoodFactory.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Food.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Food.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Apple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Apple.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Cram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Cram.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/HoneyCake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/HoneyCake.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Junk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Junk.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Lembas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Lembas.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Melon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Melon.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Mushrooms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Foods/Mushrooms.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Gandalf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Gandalf.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Mood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Mood.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/Angry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/Angry.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/Happy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/Happy.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/JavaScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/JavaScript.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/Sad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Models/Moods/Sad.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/MordorsCrueltyPlan.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/MordorsCrueltyPlan.csproj -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Program.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/MordorsCrueltyPlan/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/App.config -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Factories/AnimalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Factories/AnimalFactory.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Factories/FoodFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Factories/FoodFactory.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animal.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Cat.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Mouse.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Tiger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Tiger.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Zebra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Animals/Zebra.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Felime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Felime.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Food.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Food.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Foods/Meat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Foods/Meat.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Foods/Vegetable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Foods/Vegetable.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Mammal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Models/Mammal.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Program.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /06.Inheritance & Polymorphism - Exercise/WildFarm/WildFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/06.Inheritance & Polymorphism - Exercise/WildFarm/WildFarm.csproj -------------------------------------------------------------------------------- /ExamPrepLiveDemo/ExamPrepLiveDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/ExamPrepLiveDemo.sln -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/App.config -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/ClassDiagram1.cd -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Core/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Core/CarManager.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Core/Engine.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Cars/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Cars/Car.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Cars/PerformanceCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Cars/PerformanceCar.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Cars/ShowCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Cars/ShowCar.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Garage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Garage.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Races/CasualRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Races/CasualRace.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Races/DragRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Races/DragRace.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Races/DriftRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Races/DriftRace.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Entities/Races/Race.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Entities/Races/Race.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/NFS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/NFS.csproj -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/StartUp.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/Utilities/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/Utilities/Constants.cs -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/bin/Debug/NFS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/bin/Debug/NFS.exe -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/bin/Debug/NFS.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/bin/Debug/NFS.exe.config -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/bin/Debug/NFS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/bin/Debug/NFS.pdb -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/bin/Debug/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 1808049391 -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 52537b09c1099f61f16ee25eb446ddb4f1004711 2 | -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/obj/Debug/NFS.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/obj/Debug/NFS.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/obj/Debug/NFS.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/obj/Debug/NFS.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/obj/Debug/NFS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/obj/Debug/NFS.exe -------------------------------------------------------------------------------- /ExamPrepLiveDemo/NFS/obj/Debug/NFS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/ExamPrepLiveDemo/NFS/obj/Debug/NFS.pdb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/LICENSE -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/App.config -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/AvatarLiveDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/AvatarLiveDemo.csproj -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Core/Engine.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Core/NationsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Core/NationsBuilder.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Benders/AirBender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Benders/AirBender.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Benders/Bender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Benders/Bender.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Benders/EarthBender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Benders/EarthBender.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Benders/FireBender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Benders/FireBender.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Benders/WaterBender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Benders/WaterBender.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Monuments/AirMonument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Monuments/AirMonument.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Monuments/EarthMonument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Monuments/EarthMonument.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Monuments/FireMonument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Monuments/FireMonument.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Monuments/Monument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Monuments/Monument.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Monuments/WaterMonument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Monuments/WaterMonument.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Entities/Nation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Entities/Nation.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Program.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/bin/Debug/AvatarLiveDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/bin/Debug/AvatarLiveDemo.exe -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/bin/Debug/AvatarLiveDemo.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/bin/Debug/AvatarLiveDemo.exe.config -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/bin/Debug/AvatarLiveDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/bin/Debug/AvatarLiveDemo.pdb -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.exe -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/obj/Debug/AvatarLiveDemo.pdb -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4b01ec40a1e716381ee5b89821be3bec6c85c422 2 | -------------------------------------------------------------------------------- /Live/AvatarLiveDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/AvatarLiveDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Live/Live.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/Live/Live.sln -------------------------------------------------------------------------------- /NeedForSpeed/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/App.config -------------------------------------------------------------------------------- /NeedForSpeed/Core/CarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Core/CarManager.cs -------------------------------------------------------------------------------- /NeedForSpeed/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Core/Engine.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Cars/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Cars/Car.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Cars/PerformanceCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Cars/PerformanceCar.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Cars/ShowCar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Cars/ShowCar.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Essentials/Garage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Essentials/Garage.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Races/NormalRaces/CasualRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Races/NormalRaces/CasualRace.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Races/NormalRaces/CircuitRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Races/NormalRaces/CircuitRace.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Races/NormalRaces/DragRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Races/NormalRaces/DragRace.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Races/NormalRaces/DriftRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Races/NormalRaces/DriftRace.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Races/NormalRaces/NormalRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Races/NormalRaces/NormalRace.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Races/Race.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Races/Race.cs -------------------------------------------------------------------------------- /NeedForSpeed/Entities/Races/SpecialRaces/TimeLimitRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Entities/Races/SpecialRaces/TimeLimitRace.cs -------------------------------------------------------------------------------- /NeedForSpeed/Factories/CarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Factories/CarFactory.cs -------------------------------------------------------------------------------- /NeedForSpeed/Factories/RaceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Factories/RaceFactory.cs -------------------------------------------------------------------------------- /NeedForSpeed/IO/ConsoleReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/IO/ConsoleReader.cs -------------------------------------------------------------------------------- /NeedForSpeed/IO/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/IO/ConsoleWriter.cs -------------------------------------------------------------------------------- /NeedForSpeed/NeedForSpeed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/NeedForSpeed.csproj -------------------------------------------------------------------------------- /NeedForSpeed/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NeedForSpeed/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/StartUp.cs -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/Bonus.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/Bonus.zip -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.000.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.000.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.000.001.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.000.001.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.000.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.000.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.000.002.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.000.002.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.001.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.001.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Bonus/test.002.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Bonus/test.002.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/BuisnessLogic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/BuisnessLogic.zip -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.000.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.000.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.000.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.000.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.000.003.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.000.003.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.001.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.002.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.003.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.003.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.003.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.004.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.004.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.004.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.005.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/BuisnessLogic/test.005.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/BuisnessLogic/test.005.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/IO.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/IO.zip -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.000.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.000.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.000.001.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.000.001.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.000.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.000.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.000.002.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.000.002.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.001.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.001.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.002.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.002.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.003.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.003.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.003.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.003.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.004.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.004.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/IO/test.004.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/IO/test.004.out.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/Structure.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/Structure.zip -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.000.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.000.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.000.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.000.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.000.003.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.000.003.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.001.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.001.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.002.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.002.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.003.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.003.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.003.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.004.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.004.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.004.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.005.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Tests/Structure/test.005.in.txt -------------------------------------------------------------------------------- /NeedForSpeed/Tests/Structure/test.005.out.txt: -------------------------------------------------------------------------------- 1 | Test Passed! -------------------------------------------------------------------------------- /NeedForSpeed/Utilities/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Utilities/Constants.cs -------------------------------------------------------------------------------- /NeedForSpeed/Utilities/InputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSharpFundamentals/CSharp-OOP-Basics_June2017/HEAD/NeedForSpeed/Utilities/InputParser.cs --------------------------------------------------------------------------------