├── .gitignore ├── C# OOP Advanced ├── 05. CSharp-OOP-Advanced-Unit-Testing-Exercises-Skeleton │ ├── CustomLinkedList │ │ ├── CustomLinkedList.sln │ │ └── CustomLinkedList │ │ │ ├── CustomLinkedList.csproj │ │ │ └── DynamicList.cs │ └── TirePressureMonitoringSystem │ │ ├── Alarm.cs │ │ └── Sensor.cs ├── 05. CSharp-OOP-Advanced-Unit-Testing-Lab-Skeleton │ └── Lab │ │ ├── Lab.sln │ │ ├── LabAppTests │ │ ├── AxeTests.cs │ │ ├── DummyTests.cs │ │ ├── HeroTests.cs │ │ └── LabAppTests.csproj │ │ └── Skeleton │ │ ├── Axe.cs │ │ ├── Dummy.cs │ │ ├── Hero.cs │ │ ├── IHero.cs │ │ ├── ITarget.cs │ │ ├── IWeapon.cs │ │ ├── LabApp.csproj │ │ └── StartUp.cs ├── 07. CSharp-OOP-Advanced-Workshop-Skeleton │ ├── 07. CSharp-OOP-Advanced-Workshop-Skeleton.zip │ ├── Forum.App │ │ ├── Commands │ │ │ ├── AddPostMenuCommand.cs │ │ │ ├── AddReplyCommand.cs │ │ │ ├── BackCommand.cs │ │ │ ├── CategoriesMenuCommand.cs │ │ │ ├── LogInCommand.cs │ │ │ ├── LogInMenuCommand.cs │ │ │ ├── LogOutMenuCommand.cs │ │ │ ├── NextPageMenuCommand.cs │ │ │ ├── PostCommand.cs │ │ │ ├── PreviousPageCommand.cs │ │ │ ├── SignUpCommand.cs │ │ │ ├── SignUpMenuCommand.cs │ │ │ ├── SubmitCommand.cs │ │ │ ├── ViewCategoryMenuCommand.cs │ │ │ ├── ViewPostMenuCommand.cs │ │ │ ├── ViewReplyMenuCommand.cs │ │ │ └── WriteCommand.cs │ │ ├── Contracts │ │ │ ├── Factories │ │ │ │ ├── ICommandFactory.cs │ │ │ │ ├── ILabelFactory.cs │ │ │ │ ├── IMenuFactory.cs │ │ │ │ └── ITextAreaFactory.cs │ │ │ ├── IForumViewEngine.cs │ │ │ ├── IMainController.cs │ │ │ ├── Menus │ │ │ │ ├── IIdHoldingMenu.cs │ │ │ │ ├── IPaginatedMenu.cs │ │ │ │ └── ITextAreaMenu.cs │ │ │ ├── Models │ │ │ │ ├── IButton.cs │ │ │ │ ├── ICommand.cs │ │ │ │ ├── IForumReader.cs │ │ │ │ ├── ILabel.cs │ │ │ │ ├── IMenu.cs │ │ │ │ ├── IPositionable.cs │ │ │ │ ├── ISession.cs │ │ │ │ └── ITextInputArea.cs │ │ │ ├── Services │ │ │ │ ├── IPostService.cs │ │ │ │ └── IUserService.cs │ │ │ └── ViewModels │ │ │ │ ├── ICategoryViewModel.cs │ │ │ │ ├── IPostInfoViewModel.cs │ │ │ │ ├── IPostViewModel.cs │ │ │ │ └── IReplyViewModel.cs │ │ ├── Engine.cs │ │ ├── Factories │ │ │ ├── CommandFactory.cs │ │ │ ├── LabelFactory.cs │ │ │ ├── MenuFactory.cs │ │ │ └── TextAreaFactory.cs │ │ ├── Forum.App.csproj │ │ ├── ForumViewEngine.cs │ │ ├── MenuController.cs │ │ ├── Menus │ │ │ ├── AddPostMenu.cs │ │ │ ├── AddReplyMenu.cs │ │ │ ├── CategoriesMenu.cs │ │ │ ├── LogInMenu.cs │ │ │ ├── MainMenu.cs │ │ │ ├── Menu.cs │ │ │ ├── SignUpMenu.cs │ │ │ ├── ViewCategoryMenu.cs │ │ │ └── ViewPostMenu.cs │ │ ├── Models │ │ │ ├── Button.cs │ │ │ ├── ForumConsoleReader.cs │ │ │ ├── Label.cs │ │ │ ├── Position.cs │ │ │ ├── Session.cs │ │ │ └── TextArea.cs │ │ ├── Services │ │ │ ├── PostService.cs │ │ │ └── UserService.cs │ │ ├── StartUp.cs │ │ └── ViewModels │ │ │ ├── CategoryInfoViewModel.cs │ │ │ ├── ContentViewModel.cs │ │ │ ├── PostInfoViewModel.cs │ │ │ ├── PostViewModel.cs │ │ │ └── ReplyViewModel.cs │ ├── Forum.Data │ │ ├── DataMapper.cs │ │ ├── Forum.Data.csproj │ │ └── ForumData.cs │ ├── Forum.Models │ │ ├── Category.cs │ │ ├── Forum.DataModels.csproj │ │ ├── Post.cs │ │ ├── Reply.cs │ │ └── User.cs │ ├── Forum.sln │ └── data │ │ ├── categories.csv │ │ ├── config.ini │ │ ├── posts.csv │ │ ├── replies.csv │ │ └── users.csv ├── 08.EventsExercise - credits to ivanlutov │ ├── 01.EventImplementation │ │ ├── 01.EventImplementation.csproj │ │ ├── 01.EventImplementation.zip │ │ ├── App.config │ │ ├── Dispatcher.cs │ │ ├── Handler.cs │ │ ├── NameChangeEventArgs.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Startup.cs │ ├── 02.KingsGambit │ │ ├── 02.KingsGambit.csproj │ │ ├── 02.KingsGambit.zip │ │ ├── App.config │ │ ├── Models │ │ │ ├── Footman.cs │ │ │ ├── King.cs │ │ │ ├── RoyalGuard.cs │ │ │ └── Soldier.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Startup.cs │ ├── 03.DependencyInversion │ │ ├── 03.DependencyInversion.csproj │ │ ├── 03.DependencyInversion.zip │ │ ├── App.config │ │ ├── Contracts │ │ │ └── IStrategy.cs │ │ ├── Models │ │ │ ├── PrimitiveCalculator.cs │ │ │ └── Strategies │ │ │ │ ├── AdditionStrategy.cs │ │ │ │ ├── DivideStrategy.cs │ │ │ │ ├── MultiplyStrategy.cs │ │ │ │ └── SubtractionStrategy.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Startup.cs │ ├── 04.WorkForce │ │ ├── 04.WorkForce.csproj │ │ ├── 04.WorkForce.zip │ │ ├── App.config │ │ ├── JobEventArgs.cs │ │ ├── JobsList.cs │ │ ├── Models │ │ │ ├── Employees │ │ │ │ ├── Employee.cs │ │ │ │ ├── PartTimeEmployee.cs │ │ │ │ └── StandardEmployee.cs │ │ │ └── Jobs │ │ │ │ └── Job.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Startup.cs │ ├── 05.KingsGambitExtended │ │ ├── 05.KingsGambitExtended.csproj │ │ ├── 05.KingsGambitExtended.zip │ │ ├── App.config │ │ ├── Contracts │ │ │ └── INameble.cs │ │ ├── KillEventArgs.cs │ │ ├── Models │ │ │ ├── Footman.cs │ │ │ ├── King.cs │ │ │ ├── RoyalGuard.cs │ │ │ └── Soldier.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SoldierList.cs │ │ └── Startup.cs │ └── 08.EventsExercise.sln ├── BashSoft-thirdStage-Final │ └── StoryMode │ │ ├── BashSoft.Tests │ │ ├── BashSoft.Tests.csproj │ │ └── OrderedDataStructureTester.cs │ │ ├── BashSoft │ │ ├── Attributes │ │ │ ├── AliasAttribute.cs │ │ │ └── InjectAttribute.cs │ │ ├── BashSoft.csproj │ │ ├── Contracts │ │ │ ├── IContentComparer .cs │ │ │ ├── ICourse.cs │ │ │ ├── IDataFilter.cs │ │ │ ├── IDataSorter.cs │ │ │ ├── IDatabase .cs │ │ │ ├── IDirectoryChanger.cs │ │ │ ├── IDirectoryCreator .cs │ │ │ ├── IDirectoryManager.cs │ │ │ ├── IDirectoryTraverser.cs │ │ │ ├── IExecutable.cs │ │ │ ├── IFilteredTaker .cs │ │ │ ├── IInterpreter.cs │ │ │ ├── IOrderedTaker.cs │ │ │ ├── IReader.cs │ │ │ ├── IRequester.cs │ │ │ ├── ISimpleOrderedBag.cs │ │ │ └── IStudent.cs │ │ ├── DataStructures │ │ │ └── SimpleSortedList.cs │ │ ├── DirectoryInfo.cs │ │ ├── Exceptions │ │ │ ├── CourseNotFoundException.cs │ │ │ ├── DuplicateEntryInStructureException.cs │ │ │ ├── InvalidCommandException.cs │ │ │ ├── InvalidFileNameException.cs │ │ │ ├── InvalidNumberOfScoresException.cs │ │ │ ├── InvalidPathException.cs │ │ │ └── InvalidStringException.cs │ │ ├── Files │ │ │ ├── Mismatches.txt │ │ │ ├── actual.txt │ │ │ ├── data.txt │ │ │ ├── dataNew.txt │ │ │ ├── expected.txt │ │ │ ├── getHelp.txt │ │ │ ├── test1.txt │ │ │ ├── test2.txt │ │ │ └── test3.txt │ │ ├── IO │ │ │ ├── CommandInterpreter.cs │ │ │ ├── Commands │ │ │ │ ├── ChangeAbsolutePathCommand.cs │ │ │ │ ├── ChangeRelativePathCommand.cs │ │ │ │ ├── Command.cs │ │ │ │ ├── CompareFilesCommand.cs │ │ │ │ ├── DisplayCommand.cs │ │ │ │ ├── DropDatabaseCommand.cs │ │ │ │ ├── GetHelpCommand.cs │ │ │ │ ├── MakeDirectoryCommand.cs │ │ │ │ ├── OpenFileCommand.cs │ │ │ │ ├── PrintFilteredStudentsCommand.cs │ │ │ │ ├── PrintOrderedStudentsCommand.cs │ │ │ │ ├── ReadDatabaseCommand.cs │ │ │ │ ├── ShowCourseCommand.cs │ │ │ │ └── TraverseFoldersCommand.cs │ │ │ ├── IOManager.cs │ │ │ ├── InputReader.cs │ │ │ └── OutputWriter.cs │ │ ├── Judge │ │ │ └── Tester.cs │ │ ├── Models │ │ │ ├── SoftUniCourse.cs │ │ │ └── SoftUniStudent.cs │ │ ├── Repository │ │ │ ├── RepositoryFilter.cs │ │ │ ├── RepositorySorter.cs │ │ │ └── StudentsRepository.cs │ │ ├── StartUp.cs │ │ └── Static data │ │ │ ├── ExceptionMessages.cs │ │ │ └── SessionData.cs │ │ ├── Mismatches.txt │ │ ├── SimpleJudge │ │ ├── SimpleJudge.csproj │ │ └── Tester.cs │ │ ├── StoryMode.sln │ │ ├── StoryMode.zip │ │ └── Tester.cs ├── FestivalManagerExam22Apr2018 │ └── 01. Structure_Skeleton (.NET Core) │ │ ├── FestivalManager.Tests │ │ ├── FestivalManager.Tests.csproj │ │ ├── FestivalManager.Tests.zip │ │ └── SetControllerTests.cs │ │ ├── FestivalManager.sln │ │ └── FestivalManager │ │ ├── Core │ │ ├── Contracts │ │ │ └── IEngine.cs │ │ ├── Controllers │ │ │ ├── Contracts │ │ │ │ ├── IFestivalController.cs │ │ │ │ └── ISetController.cs │ │ │ ├── FestivalController.cs │ │ │ └── SetController.cs │ │ ├── Engine.cs │ │ └── IO │ │ │ ├── ConsoleReader.cs │ │ │ ├── ConsoleWriter.cs │ │ │ └── Contracts │ │ │ ├── IReader.cs │ │ │ └── IWriter.cs │ │ ├── Entities │ │ ├── Contracts │ │ │ ├── IInstrument.cs │ │ │ ├── IPerformer.cs │ │ │ ├── ISet.cs │ │ │ ├── ISong.cs │ │ │ └── IStage.cs │ │ ├── Factories │ │ │ ├── Contracts │ │ │ │ ├── IInstrumentFactory.cs │ │ │ │ ├── IPerformerFactory.cs │ │ │ │ ├── ISetFactory.cs │ │ │ │ └── ISongFactory.cs │ │ │ ├── InstrumentFactory.cs │ │ │ ├── PerformerFactory.cs │ │ │ ├── SetFactory.cs │ │ │ └── SongFactory.cs │ │ ├── Instruments │ │ │ ├── Drums.cs │ │ │ ├── Guitar.cs │ │ │ ├── Instrument.cs │ │ │ └── Microphone.cs │ │ ├── Performer.cs │ │ ├── Sets │ │ │ ├── Long.cs │ │ │ ├── Medium.cs │ │ │ ├── Set.cs │ │ │ └── Short.cs │ │ ├── Song.cs │ │ └── Stage.cs │ │ ├── FestivalManager.csproj │ │ ├── FestivalManager.zip │ │ └── StartUp.cs ├── GenericsExercises │ ├── 01.GenericBoxOfString │ │ ├── 01.GenericBoxOfString.csproj │ │ ├── 01.GenericBoxOfString.zip │ │ ├── Box.cs │ │ └── StartUp.cs │ ├── 02.GenericBoxOfInteger │ │ ├── 02.GenericBoxOfInteger.csproj │ │ ├── 02.GenericBoxOfInteger.zip │ │ ├── Box.cs │ │ └── StartUp.cs │ ├── 03.GenericSwapMethodString │ │ ├── 03.GenericSwapMethodString.csproj │ │ ├── 03.GenericSwapMethodString.zip │ │ ├── Box.cs │ │ └── StartUp.cs │ ├── 04.GenericSwapMethodInteger │ │ ├── 04.GenericSwapMethodInteger.csproj │ │ ├── 04.GenericSwapMethodInteger.zip │ │ ├── Box.cs │ │ └── StartUp.cs │ ├── 05.GenericCountMethodString │ │ ├── 05.GenericCountMethodString.csproj │ │ ├── 05.GenericCountMethodString.zip │ │ ├── Box.cs │ │ └── StartUp.cs │ ├── 06.GenericCountMethodDouble │ │ ├── 06.GenericCountMethodDouble.csproj │ │ ├── 06.GenericCountMethodDouble.zip │ │ ├── Box.cs │ │ └── StartUp.cs │ ├── 07.CustomList │ │ ├── 07.CustomList.csproj │ │ ├── 07.CustomList.zip │ │ ├── CommandInterpreter.cs │ │ ├── CuslomList.cs │ │ └── StartUp.cs │ ├── 08.CustomListSorter │ │ ├── 08.CustomListSorter.csproj │ │ ├── 08.CustomListSorter.zip │ │ ├── CommandInterpreter.cs │ │ ├── CuslomList.cs │ │ ├── Sorter.cs │ │ └── StartUp.cs │ ├── 09.CustomListIterator │ │ ├── 09.CustomListIterator.csproj │ │ ├── 09.CustomListIterator.zip │ │ ├── CommandInterpreter.cs │ │ ├── CuslomList.cs │ │ ├── Sorter.cs │ │ └── StartUp.cs │ ├── 10.Tuple │ │ ├── 10.Tuple.csproj │ │ ├── 10.Tuple.zip │ │ ├── StartUp.cs │ │ └── Tuple.cs │ ├── 11.Threeuple │ │ ├── 11.Threeuple.csproj │ │ ├── 11.Threeuple.zip │ │ ├── StartUp.cs │ │ └── Threeuple.cs │ ├── GenericsExercises.sln │ └── GenericsExercises.zip ├── GenericsLab │ ├── 01.BoxOfT │ │ ├── 01.BoxOfT.csproj │ │ ├── 01.BoxOfT.zip │ │ ├── Box.cs │ │ └── StartUp.cs │ ├── 02.ArrayCreator │ │ ├── 02.ArrayCreator.csproj │ │ ├── 02.ArrayCreator.zip │ │ ├── ArrayCreator.cs │ │ └── StartUp.cs │ ├── 03.Scale │ │ ├── 03.Scale.csproj │ │ ├── 03.Scale.zip │ │ ├── Scale.cs │ │ └── StartUp.cs │ └── GenericsLab.sln ├── HellExam16Aug2017 │ ├── Hell.sln │ ├── Hell │ │ ├── App.config │ │ ├── Commands │ │ │ ├── AbstractCommand.cs │ │ │ ├── HeroCommand.cs │ │ │ ├── InspectCommand.cs │ │ │ ├── ItemCommand.cs │ │ │ ├── QuitCommand.cs │ │ │ └── RecipeCommand.cs │ │ ├── Core │ │ │ ├── Engine.cs │ │ │ └── HeroManager.cs │ │ ├── Entities │ │ │ ├── Entities.zip │ │ │ ├── Heroes │ │ │ │ ├── AbstractHero.cs │ │ │ │ ├── Assassin.cs │ │ │ │ ├── Barbarian.cs │ │ │ │ └── Wizard.cs │ │ │ ├── Items │ │ │ │ ├── AbstractItem.cs │ │ │ │ ├── CommonItem.cs │ │ │ │ └── RecipeItem.cs │ │ │ └── Miscellaneous │ │ │ │ ├── HeroInventory.cs │ │ │ │ └── ItemAttribute.cs │ │ ├── Hell.csproj │ │ ├── Hell.zip │ │ ├── IO │ │ │ ├── ConsoleReader.cs │ │ │ └── ConsoleWriter.cs │ │ ├── Interfaces │ │ │ ├── ICommand.cs │ │ │ ├── IHero.cs │ │ │ ├── IInputReader.cs │ │ │ ├── IInventory.cs │ │ │ ├── IItem.cs │ │ │ ├── IManager.cs │ │ │ ├── IOutputWriter.cs │ │ │ └── IRecipe.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── StartUp.cs │ │ └── Utilities │ │ │ └── Constants.cs │ └── HeroInventory.Tests │ │ ├── HeroInventory.Tests.csproj │ │ ├── HeroInventory.Tests.zip │ │ ├── HeroInventoryTests.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── IteratorsAndComparatorsExercises │ ├── 01.ListIterator │ │ ├── 01.ListIterator.csproj │ │ ├── 01.ListIterator.zip │ │ ├── ComandInterpreter.cs │ │ ├── ListyIterator.cs │ │ └── StartUp.cs │ ├── 02.Collection │ │ ├── 02.Collection.csproj │ │ ├── 02.Collection.zip │ │ ├── ComandInterpreter.cs │ │ ├── ListyIterator.cs │ │ └── StartUp.cs │ ├── 03.Stack │ │ ├── 03.Stack.csproj │ │ ├── 03.Stack.zip │ │ ├── ComandInterpreter.cs │ │ ├── Stack.cs │ │ └── StartUp.cs │ ├── 04.Froggy │ │ ├── 04.Froggy.csproj │ │ ├── 04.Froggy.zip │ │ ├── Lake.cs │ │ └── StartUp.cs │ ├── 05.ComparingObjects │ │ ├── 05.ComparingObjects.csproj │ │ ├── 05.ComparingObjects.zip │ │ ├── Person.cs │ │ └── StartUp.cs │ ├── 06.StrategyPattern │ │ ├── 06.StrategyPattern.csproj │ │ ├── 06.StrategyPattern.zip │ │ ├── Person.cs │ │ ├── PersonByAgeComparator.cs │ │ ├── PersonByNameComparator.cs │ │ └── StartUp.cs │ ├── 07.EqualityLogic │ │ ├── 07.EqualityLogic.csproj │ │ ├── 07.EqualityLogic.zip │ │ ├── Person.cs │ │ └── StartUp.cs │ ├── 08.PetClinic │ │ ├── 08.PetClinic.csproj │ │ ├── 08.PetClinic.zip │ │ ├── Clinic.cs │ │ ├── Pet.cs │ │ └── StartUp.cs │ ├── 09.LinkedListTraversal │ │ ├── 09.LinkedListTraversal.csproj │ │ ├── 09.LinkedListTraversal.zip │ │ ├── LinkedList.cs │ │ └── StartUp.cs │ └── IteratorsAndComparatorsExercises.sln ├── IteratorsAndComparatorsLab │ ├── 01.Library │ │ ├── 01.Library.csproj │ │ ├── 01.Library.zip │ │ ├── Book.cs │ │ ├── Library.cs │ │ └── StartUp.cs │ ├── 02.LibraryIterator │ │ ├── 02.LibraryIterator.csproj │ │ ├── 02.LibraryIterator.zip │ │ ├── Book.cs │ │ ├── Library.cs │ │ └── StartUp.cs │ ├── 03.ComparableBook │ │ ├── 03.ComparableBook.csproj │ │ ├── 03.ComparableBook.zip │ │ ├── Book.cs │ │ ├── Library.cs │ │ └── StartUp.cs │ ├── 04.BookComparer │ │ ├── 04.BookComparer.csproj │ │ ├── 04.BookComparer.zip │ │ ├── Book.cs │ │ ├── BookComparator.cs │ │ ├── Library.cs │ │ └── StartUp.cs │ └── IteratorsAndComparatorsLab.sln ├── LastArmyExam │ ├── Last Army.sln │ ├── LastArmy.Tests │ │ ├── LastArmy.Tests.csproj │ │ ├── LastArmy.Tests.zip │ │ ├── MissionControllerTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── LastArmy │ │ ├── App.config │ │ ├── Core │ │ ├── Engine.cs │ │ ├── GameController.cs │ │ └── MissionController.cs │ │ ├── Entities │ │ ├── Ammunitions │ │ │ ├── Ammunition.cs │ │ │ ├── AutomaticMachine.cs │ │ │ ├── Gun.cs │ │ │ ├── Helmet.cs │ │ │ ├── Knife.cs │ │ │ ├── MachineGun.cs │ │ │ ├── NightVision.cs │ │ │ ├── RPG.cs │ │ │ └── Weapons.cs │ │ ├── Army.cs │ │ ├── Missions │ │ │ ├── Easy.cs │ │ │ ├── Hard.cs │ │ │ ├── Medium.cs │ │ │ └── Mission.cs │ │ ├── Soldiers │ │ │ ├── Corporal.cs │ │ │ ├── Ranker.cs │ │ │ ├── Soldier.cs │ │ │ └── SpecialForce.cs │ │ └── WareHouse.cs │ │ ├── Factory │ │ ├── AmmunitionFactory.cs │ │ ├── MissionFactory.cs │ │ └── SoldierFactory.cs │ │ ├── IO │ │ ├── ConsoleReader.cs │ │ ├── ConsoleWriter.cs │ │ └── OutputMessages.cs │ │ ├── Interfaces │ │ ├── IAmmunition.cs │ │ ├── IAmmunitionFactory.cs │ │ ├── IArmy.cs │ │ ├── IEngine.cs │ │ ├── IGameController.cs │ │ ├── IMission.cs │ │ ├── IMissionController.cs │ │ ├── IMissionFactory.cs │ │ ├── IReader.cs │ │ ├── ISoldier.cs │ │ ├── ISoldierFactory.cs │ │ ├── IWarehouse.cs │ │ └── IWriter.cs │ │ ├── Last Army.csproj │ │ ├── LastArmy.zip │ │ ├── LastArmyMain.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── MindraftExam │ ├── Mindraft_Structure_Skeleton │ │ ├── App.config │ │ ├── Attributes │ │ │ ├── InjectAttribute.cs │ │ │ └── RefreshEntitiesAttribute.cs │ │ ├── Constants │ │ │ └── Constants.cs │ │ ├── Core │ │ │ ├── CommandInterpreter.cs │ │ │ ├── Commands │ │ │ │ ├── Command.cs │ │ │ │ ├── DayCommand.cs │ │ │ │ ├── InspectCommand.cs │ │ │ │ ├── ModeCommand.cs │ │ │ │ ├── RegisterCommand.cs │ │ │ │ ├── RepairCommand.cs │ │ │ │ └── ShutdownCommand.cs │ │ │ ├── EnergyRepository.cs │ │ │ ├── Engine.cs │ │ │ ├── HarvesterController.cs │ │ │ └── ProviderController.cs │ │ ├── Entities │ │ │ ├── Harvesters │ │ │ │ ├── HammerHarvester.cs │ │ │ │ ├── Harvester.cs │ │ │ │ ├── InfinityHarvester.cs │ │ │ │ ├── SonicHarvester.cs │ │ │ │ └── StandartHarvester.cs │ │ │ └── Providers │ │ │ │ ├── PressureProvider.cs │ │ │ │ ├── Provider.cs │ │ │ │ ├── SolarProvider.cs │ │ │ │ └── StandartProvider.cs │ │ ├── Factrories │ │ │ ├── HarvesterFactory.cs │ │ │ └── ProviderFactory.cs │ │ ├── IO │ │ │ ├── ConsoleReader.cs │ │ │ └── ConsoleWriter.cs │ │ ├── Interfaces │ │ │ ├── Core │ │ │ │ ├── ICommand.cs │ │ │ │ ├── ICommandInterpreter.cs │ │ │ │ ├── IController.cs │ │ │ │ ├── IEnergyRepository.cs │ │ │ │ ├── IEngine.cs │ │ │ │ ├── IHarvesterController.cs │ │ │ │ └── IProviderController.cs │ │ │ ├── Entities │ │ │ │ ├── IEntity.cs │ │ │ │ ├── IHarvester.cs │ │ │ │ └── IProvider.cs │ │ │ ├── Factories │ │ │ │ ├── IHarvesterFactory.cs │ │ │ │ └── IProviderFactory.cs │ │ │ └── IO │ │ │ │ ├── IReader.cs │ │ │ │ └── IWriter.cs │ │ ├── Mindraft_Structure_Skeleton.zip │ │ ├── Minedraft.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── StartUp.cs │ ├── Minedraft.Tests │ │ ├── Minedraft.Tests.csproj │ │ ├── Minedraft.Tests.zip │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ProviderControllerTests.cs │ │ └── packages.config │ └── Minedraft.sln ├── ReflectionAndAttributesExercises │ ├── 01.HarvestingFields │ │ ├── 01.HarvestingFields.csproj │ │ ├── 01.HarvestingFields.zip │ │ ├── HarvestingFields.cs │ │ └── StartUp.cs │ ├── 02.BlackBoxInteger │ │ ├── 02.BlackBoxInteger.csproj │ │ ├── 02.BlackBoxInteger.zip │ │ ├── BlackBoxInteger.cs │ │ └── StartUp.cs │ ├── 03.BarrackWars_ANewFactory │ │ ├── 03.BarrackWars.csproj │ │ ├── 03.BarrackWars_ANewFactory.zip │ │ ├── Contracts │ │ │ ├── IAttacker.cs │ │ │ ├── ICommandInterpreter.cs │ │ │ ├── IDestroyable.cs │ │ │ ├── IExecutable.cs │ │ │ ├── IRepository.cs │ │ │ ├── IRunnable.cs │ │ │ ├── IUnit.cs │ │ │ └── IUnitFactory.cs │ │ ├── Core │ │ │ ├── CommandInterpreter.cs │ │ │ ├── Commands │ │ │ │ ├── AddCommand.cs │ │ │ │ ├── Command.cs │ │ │ │ ├── FightCommand.cs │ │ │ │ ├── InjectAttribute.cs │ │ │ │ ├── ReportCommand.cs │ │ │ │ └── RetireCommand.cs │ │ │ ├── Engine.cs │ │ │ └── Factories │ │ │ │ └── UnitFactory.cs │ │ ├── Data │ │ │ └── UnitRepository.cs │ │ ├── Models │ │ │ └── Units │ │ │ │ ├── Archer.cs │ │ │ │ ├── Gunner.cs │ │ │ │ ├── Horseman.cs │ │ │ │ ├── Pikeman.cs │ │ │ │ ├── SwordsMan.cs │ │ │ │ └── Unit.cs │ │ └── StartUp.cs │ ├── 06.TrafficLights │ │ ├── 06.TrafficLights.csproj │ │ ├── 06.TrafficLights.zip │ │ ├── Contracts │ │ │ └── ITrafficLight.cs │ │ ├── Models │ │ │ ├── Light.cs │ │ │ └── TrafficLight.cs │ │ └── StartUp.cs │ ├── 07.InfernoInfinity │ │ ├── 07.InfernoInfinity.csproj │ │ ├── 07.InfernoInfinity.zip │ │ ├── Contracts │ │ │ ├── ICommandInterpreter.cs │ │ │ ├── IExecutable.cs │ │ │ ├── IGem.cs │ │ │ ├── IGemFactory.cs │ │ │ ├── IReader.cs │ │ │ ├── IRepository.cs │ │ │ ├── IRunnable.cs │ │ │ ├── IWeapon.cs │ │ │ ├── IWeaponAttribute.cs │ │ │ ├── IWeaponFactory.cs │ │ │ └── IWriter.cs │ │ ├── Core │ │ │ ├── Attributes │ │ │ │ └── InjectAttribute.cs │ │ │ ├── CommandInterpreter.cs │ │ │ ├── Commands │ │ │ │ ├── AddCommand.cs │ │ │ │ ├── AuthorCommand.cs │ │ │ │ ├── Command.cs │ │ │ │ ├── CreateCommand.cs │ │ │ │ ├── DescriptionCommand.cs │ │ │ │ ├── PrintCommand.cs │ │ │ │ ├── RemoveCommand.cs │ │ │ │ ├── ReviewersCommand.cs │ │ │ │ ├── RevisionCommand.cs │ │ │ │ └── WeaponAttribute.cs │ │ │ ├── Engine.cs │ │ │ ├── Factories │ │ │ │ ├── GemFactory.cs │ │ │ │ └── WeaponFactory.cs │ │ │ ├── Reader.cs │ │ │ └── Writer.cs │ │ ├── Data │ │ │ └── Repository.cs │ │ ├── Models │ │ │ ├── Enums │ │ │ │ ├── Clarity.cs │ │ │ │ ├── Rarity.cs │ │ │ │ └── WeaponType.cs │ │ │ ├── Gems │ │ │ │ ├── Amethyst.cs │ │ │ │ ├── Emerald.cs │ │ │ │ ├── Gem.cs │ │ │ │ └── Ruby.cs │ │ │ └── Weapons │ │ │ │ ├── Axe.cs │ │ │ │ ├── Knife.cs │ │ │ │ ├── Sword.cs │ │ │ │ └── Weapon.cs │ │ └── StartUp.cs │ ├── 08.CreateCustomClassAttribute │ │ ├── 08.CreateCustomClassAttribute.csproj │ │ ├── 08.CreateCustomClassAttribute.zip │ │ ├── IWeaponAttribute.cs │ │ ├── StartUp.cs │ │ ├── Weapon.cs │ │ └── WeaponAttribute.cs │ └── ReflectionAndAttributesExercises.sln ├── ReflectionAndAttributesLab │ ├── 01.Stealer │ │ ├── 01.Stealer.csproj │ │ ├── 01.Stealer.zip │ │ ├── Hacker.cs │ │ ├── Spy.cs │ │ └── StartUp.cs │ ├── 02.HighQualityMistakes │ │ ├── 02.HighQualityMistakes.csproj │ │ ├── 02.HighQualityMistakes.zip │ │ ├── Hacker.cs │ │ ├── Spy.cs │ │ └── StartUp.cs │ ├── 03.MissionPrivateImpossible │ │ ├── 03.MissionPrivateImpossible.csproj │ │ ├── 03.MissionPrivateImpossible.zip │ │ ├── Hacker.cs │ │ ├── Spy.cs │ │ └── StartUp.cs │ ├── 04.Collector │ │ ├── 04.Collector.csproj │ │ ├── 04.Collector.zip │ │ ├── Hacker.cs │ │ ├── Spy.cs │ │ └── StartUp.cs │ ├── 05.CreateAttribute │ │ ├── 05.CreateAttribute.csproj │ │ ├── 05.CreateAttribute.zip │ │ ├── SoftUniAttribute.cs │ │ └── StartUp.cs │ ├── 06.CodingTracker │ │ ├── 06.CodingTracker.csproj │ │ ├── 06.CodingTracker.zip │ │ ├── SoftUniAttribute.cs │ │ ├── StartUp.cs │ │ └── Tracker.cs │ └── ReflectionAndAttributesLab.sln ├── ResourcesDoxsOOPAdvanced │ ├── 01. CSharp-OOP-Advanced-SOLID-Exercise.docx │ ├── 01. CSharp-OOP-Advanced-SOLID-Lab.docx │ ├── 02. CSharp-OOP-Advanced-Generics-Exercises.docx │ ├── 02. CSharp-OOP-Advanced-Generics-Lab.docx │ ├── 03. CSharp-OOP-Advanced-Iterators-and-Comparators-Exercises.docx │ ├── 03. CSharp-OOP-Advanced-Iterators-and-Comparators-Lab.docx │ ├── 04. CSharp-OOP-Advanced-Reflection-And-Attributes-Exercises.docx │ ├── 04. CSharp-OOP-Advanced-Reflection-And-Attributes-Lab.docx │ ├── 05. CSharp-OOP-Advanced-Unit-Testing-Exercises.docx │ ├── 05. CSharp-OOP-Advanced-Unit-Testing-Lab.docx │ ├── 06. CSharp-OOP-Advanced-Communication-and-Events-Exercises.docx │ ├── 07. CSharp-OOP-Advanced-Workshop.docx │ ├── BashSoft-OOP-Advanced.docx │ ├── Hell_Structure_Abstraction_16Aug2917docx.docx │ ├── LastArmy_Structure.docx │ ├── Minedraft_Structure_7Sept2017.docx │ ├── Structure_Условие(1).docx │ └── Structure_Условие.docx ├── SOLIDExerciseLogger │ ├── Logger │ │ ├── Engine │ │ │ └── Controller.cs │ │ ├── Factories │ │ │ ├── FactoryAppender.cs │ │ │ └── FactoryLayout.cs │ │ ├── Interfaces │ │ │ ├── IAppender.cs │ │ │ ├── ILayout.cs │ │ │ ├── ILogger.cs │ │ │ ├── IReader.cs │ │ │ └── IWriter.cs │ │ ├── Logger.csproj │ │ ├── Models │ │ │ ├── AppenderModels │ │ │ │ ├── ConsoleAppender.cs │ │ │ │ └── FileAppender.cs │ │ │ ├── Enums │ │ │ │ └── ReportLevel.cs │ │ │ ├── LayoutModels │ │ │ │ ├── SimpleLayout.cs │ │ │ │ └── XmlLayout.cs │ │ │ ├── LogFile.cs │ │ │ └── LoggerModels │ │ │ │ └── Logger.cs │ │ ├── Program.cs │ │ ├── RWModels │ │ │ ├── ConsoleReader.cs │ │ │ └── ConsoleWriter.cs │ │ └── Reports.txt │ ├── SOLIDExerciseLogger.sln │ └── SOLIDExerciseLogger.zip └── UnitTestingExercises │ ├── 01.Database │ ├── 01.Database.csproj │ ├── Database.cs │ ├── IDatabase.cs │ └── StartUp.cs │ ├── 02.ExtendedDatabase │ ├── 02.ExtendedDatabase.csproj │ ├── Database.cs │ ├── IDatabase.cs │ ├── IPerson.cs │ └── Person.cs │ ├── 03.IteratorProject │ ├── 03.IteratorProject.csproj │ └── ListyIterator.cs │ ├── 05.IntegrationTests │ ├── 05.IntegrationTests.csproj │ ├── Category.cs │ ├── Comparators │ │ ├── CategoryComparator.cs │ │ └── UserComparator.cs │ ├── User.cs │ └── UsersCategoriesDB.cs │ ├── 06.Tweeter │ ├── 06.Tweeter.csproj │ ├── Contracts │ │ ├── IClient.cs │ │ └── ITweet.cs │ └── Models │ │ ├── Tweet.cs │ │ └── TweeterClient.cs │ ├── 07.Hack │ ├── 07.Hack.csproj │ ├── IMathAbs.cs │ ├── IMathFloor.cs │ └── MathInt.cs │ ├── 08.CustomLinkedList │ ├── 08.CustomLinkedList.csproj │ └── DynamicList.cs │ ├── 09.DateTimeNowAddDays │ ├── 09.DateTimeNowAddDays.csproj │ └── IDateTimeNow.cs │ ├── 10.TirePressureMonitoringSystem │ ├── 10.TirePressureMonitoringSystem.csproj │ ├── Alarm.cs │ ├── ISensor.cs │ └── Sensor.cs │ ├── BubbleSort │ ├── 04.BubbleSort.csproj │ └── Bubble.cs │ ├── UnitTestingExercises.sln │ ├── UnitTestingExercises.zip │ └── UnitTests │ ├── BubbleSortTests.cs │ ├── CustomLinkedListTests.cs │ ├── DatabaseTests.cs │ ├── DateTimeNowAddDaysTests.cs │ ├── ExtendedDatabaseTests.cs │ ├── HackTests.cs │ ├── ListyIteratorTests.cs │ ├── TirePressureMonitoringSystemTests.cs │ ├── TweeterTests.cs │ └── UnitTests.csproj ├── C# OOP Basics ├── 02. CSharp-OOP-Basics-Working-with-Abstraction-Exercises-Resources │ ├── P01_RawData │ │ ├── Car.cs │ │ ├── Cargo.cs │ │ ├── Engine.cs │ │ ├── P01_RawData.csproj │ │ ├── P01_RawData.zip │ │ ├── StartUp.cs │ │ └── Tire.cs │ ├── P02_CarsSalesman │ │ ├── Car.cs │ │ ├── Engine.cs │ │ ├── P02_CarsSalesman.csproj │ │ ├── P02_CarsSalesman.zip │ │ └── Program.cs │ ├── P03_JediGalaxy │ │ ├── P03_JediGalaxy.csproj │ │ ├── P03_JediGalaxy.zip │ │ └── Program.cs │ ├── P04_Hospital │ │ ├── P04_Hospital.csproj │ │ ├── P04_Hospital.zip │ │ └── Program.cs │ ├── P05_GreedyTimes │ │ ├── P05_GreedyTimes.csproj │ │ ├── P05_GreedyTimes.zip │ │ ├── Program.cs │ │ ├── Unit.cs │ │ └── UnitType.cs │ ├── P06_Sneaking │ │ ├── P06_Sneaking.csproj │ │ ├── P06_Sneaking.zip │ │ └── Program.cs │ ├── P07_FamilyTree │ │ ├── FamilyTreeBuilder.cs │ │ ├── P07_FamilyTree.csproj │ │ ├── P07_FamilyTree.zip │ │ ├── Person.cs │ │ └── Program.cs │ └── WorkingWithAbstraction.sln ├── BashSoft-SecondStage │ └── StoryMode │ │ ├── BashSoft │ │ ├── BashSoft.csproj │ │ ├── DirectoryInfo.cs │ │ ├── Exceptions │ │ │ ├── CourseNotFoundException.cs │ │ │ ├── DuplicateEntryInStructureException.cs │ │ │ ├── InvalidCommandException.cs │ │ │ ├── InvalidFileNameException.cs │ │ │ ├── InvalidNumberOfScoresException.cs │ │ │ ├── InvalidPathException.cs │ │ │ └── InvalidStringException.cs │ │ ├── Files │ │ │ ├── Mismatches.txt │ │ │ ├── actual.txt │ │ │ ├── data.txt │ │ │ ├── dataNew.txt │ │ │ ├── expected.txt │ │ │ ├── getHelp.txt │ │ │ ├── test1.txt │ │ │ ├── test2.txt │ │ │ └── test3.txt │ │ ├── IO │ │ │ ├── CommandInterpreter.cs │ │ │ ├── Commands │ │ │ │ ├── ChangeAbsolutePathCommand.cs │ │ │ │ ├── ChangeRelativePathCommand.cs │ │ │ │ ├── Command.cs │ │ │ │ ├── CompareFilesCommand.cs │ │ │ │ ├── DropDatabaseCommand.cs │ │ │ │ ├── GetHelpCommand.cs │ │ │ │ ├── MakeDirectoryCommand.cs │ │ │ │ ├── OpenFileCommand.cs │ │ │ │ ├── PrintFilteredStudentsCommand.cs │ │ │ │ ├── PrintOrderedStudentsCommand.cs │ │ │ │ ├── ReadDatabaseCommand.cs │ │ │ │ ├── ShowCourseCommand.cs │ │ │ │ └── TraverseFoldersCommand.cs │ │ │ ├── IOManager.cs │ │ │ ├── InputReader.cs │ │ │ └── OutputWriter.cs │ │ ├── Judge │ │ │ └── Tester.cs │ │ ├── Models │ │ │ ├── Course.cs │ │ │ └── Student.cs │ │ ├── Repository │ │ │ ├── RepositoryFilter.cs │ │ │ ├── RepositorySorter.cs │ │ │ └── StudentsRepository.cs │ │ ├── StartUp.cs │ │ └── Static data │ │ │ ├── ExceptionMessages.cs │ │ │ └── SessionData.cs │ │ ├── Mismatches.txt │ │ ├── SimpleJudge │ │ ├── SimpleJudge.csproj │ │ └── Tester.cs │ │ ├── StoryMode.sln │ │ └── Tester.cs ├── DefiningClassesExercises │ ├── 01.DefineAClassPerson │ │ ├── 01.DefineAClassPerson.csproj │ │ ├── 01.DefineAClassPerson.zip │ │ ├── Person.cs │ │ └── Program.cs │ ├── 02. Creating Constructors │ │ ├── 02. Creating Constructors.sln │ │ └── 02. Creating Constructors │ │ │ ├── 02. Creating Constructors.csproj │ │ │ ├── 02. Creating Constructors.zip │ │ │ ├── Person.cs │ │ │ └── Program.cs │ ├── 03.OldestFamilyMember │ │ ├── 03.OldestFamilyMember.sln │ │ └── 03.OldestFamilyMember │ │ │ ├── 03.OldestFamilyMember.csproj │ │ │ ├── 03.OldestFamilyMember.zip │ │ │ ├── Family.cs │ │ │ ├── Person.cs │ │ │ └── Program.cs │ ├── 04.OpinionPoll │ │ ├── 04.OpinionPoll.sln │ │ └── 04.OpinionPoll │ │ │ ├── 04.OpinionPoll.csproj │ │ │ ├── 04.OpinionPoll.zip │ │ │ ├── Person.cs │ │ │ └── StartUp.cs │ ├── 05.DateModifier │ │ ├── 05.DateModifier.csproj │ │ ├── 05.DateModifier.zip │ │ ├── DateModifier.cs │ │ └── Program.cs │ ├── 06.CompanyRoster │ │ ├── 06.CompanyRoster.csproj │ │ ├── Employee.cs │ │ └── Program.cs │ ├── 07.CarSalesman │ │ ├── 07.CarSalesman.csproj │ │ ├── Car.cs │ │ ├── Engine.cs │ │ └── StartUp.cs │ ├── 07.SpeedRacing │ │ ├── 07.SpeedRacing.csproj │ │ ├── Car.cs │ │ └── Program.cs │ ├── 08.RowData │ │ ├── 08.RowData.csproj │ │ ├── 08.RowData.zip │ │ ├── Car.cs │ │ ├── Cargo.cs │ │ ├── Engine.cs │ │ ├── Program.cs │ │ └── Tire.cs │ ├── 09.RectangleIntersection │ │ ├── 09.RectangleIntersection.csproj │ │ ├── 09.RectangleIntersection.zip │ │ ├── Program.cs │ │ └── Rectangle.cs │ ├── 10.CarSalesman │ │ ├── 10.CarSalesman.csproj │ │ ├── Car.cs │ │ ├── Engine.cs │ │ └── Program.cs │ ├── 11.PokemonTrainer │ │ ├── 11.PokemonTrainer.csproj │ │ ├── 11.PokemonTrainer.zip │ │ ├── Pokemon.cs │ │ ├── StartUp.cs │ │ └── Trainer.cs │ ├── 12.Google │ │ ├── 12.Google.csproj │ │ ├── 12.Google.zip │ │ ├── Car.cs │ │ ├── Company.cs │ │ ├── FamilyMember.cs │ │ ├── Person.cs │ │ ├── Pokemon.cs │ │ └── Program.cs │ ├── 13.FamilyTree │ │ ├── 13.FamilyTree.csproj │ │ ├── 13.FamilyTree.zip │ │ ├── Person.cs │ │ └── Program.cs │ ├── 14.CatLady │ │ ├── 14.CatLady.csproj │ │ ├── 14.CatLady.zip │ │ ├── Cat.cs │ │ ├── Cymric.cs │ │ ├── Extraordinary.cs │ │ ├── Siamese.cs │ │ └── StartUp.cs │ ├── 15.DrawingTool │ │ ├── 15.DrawingTool.csproj │ │ ├── 15.DrawingTool.zip │ │ ├── CorDraw.cs │ │ ├── Program.cs │ │ ├── Rectangle.cs │ │ └── Square.cs │ ├── DefiningClassesExercises.sln │ └── DefiningClassesExercises.zip ├── DefiningClassesLab │ ├── 01.BankAccount │ │ ├── 01.BankAccount.zip │ │ ├── BankAccount.cs │ │ ├── StartUp.cs │ │ └── _01.BankAccount.csproj │ ├── 02.BankAccountMethods │ │ ├── 02.BankAccountMethods.zip │ │ ├── BankAccount.cs │ │ ├── StartUp.cs │ │ └── _02.BankAccountMethods.csproj │ ├── 03.TestClient │ │ ├── 03.TestClient.zip │ │ ├── BankAccount.cs │ │ ├── StartUp.cs │ │ └── _03.TestClient.csproj │ ├── 04.PersonClass │ │ ├── 04.PersonClass.csproj │ │ ├── 04.PersonClass.zip │ │ ├── BankAccount.cs │ │ ├── Person.cs │ │ └── Program.cs │ └── DefiningClassesLab.sln ├── Encapsulation-Exercises │ ├── 01.ClassBox │ │ ├── 01.ClassBox.csproj │ │ ├── 01.ClassBox.zip │ │ ├── Box.cs │ │ └── Program.cs │ ├── 02.ClassBoxDataValidation │ │ ├── 02.ClassBoxDataValidation.csproj │ │ ├── 02.ClassBoxDataValidation.zip │ │ ├── Box.cs │ │ └── Program.cs │ ├── 03.AnimalFarm │ │ ├── 03.AnimalFarm.csproj │ │ ├── 03.AnimalFarm.zip │ │ ├── Chicken.cs │ │ └── Program.cs │ ├── 04.ShoppingSpree │ │ ├── 04.ShoppingSpree.csproj │ │ ├── 04.ShoppingSpree.zip │ │ ├── Person.cs │ │ ├── Product.cs │ │ └── Program.cs │ ├── 05.PizzaCalories │ │ ├── 05.PizzaCalories.csproj │ │ ├── 05.PizzaCalories.zip │ │ ├── Dough.cs │ │ ├── Pizza.cs │ │ ├── Program.cs │ │ └── Topping.cs │ ├── 06.FootbalTeamGenerator │ │ ├── 06.FootbalTeamGenerator.csproj │ │ ├── 06.FootbalTeamGenerator.zip │ │ ├── Player.cs │ │ ├── Program.cs │ │ ├── Stat.cs │ │ └── Team.cs │ ├── AnimalFarm │ │ ├── AnimalFarm.csproj │ │ ├── AnimalFarm.zip │ │ ├── Models │ │ │ └── Chicken.cs │ │ └── Program.cs │ └── Encapsulation-Exercises.sln ├── Exam11Jul2017NeedForSpeed │ └── NeedForSpeedExam │ │ ├── App.config │ │ ├── Core │ │ ├── CarManager.cs │ │ └── Engine.cs │ │ ├── Entities │ │ ├── Cars │ │ │ ├── Car.cs │ │ │ ├── PerformanceCar.cs │ │ │ └── ShowCar.cs │ │ ├── Garage │ │ │ └── Garage.cs │ │ └── Races │ │ │ ├── CasualRace.cs │ │ │ ├── CircuitRace.cs │ │ │ ├── DragRace.cs │ │ │ ├── DriftRace.cs │ │ │ ├── Race.cs │ │ │ └── TimeLimitRace.cs │ │ ├── Factories │ │ ├── CarFactory.cs │ │ └── RaceFactory.cs │ │ ├── NeedForSpeed.csproj │ │ ├── NeedForSpeed.sln │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StartUp.cs ├── ExamAvatar12Jul2017FW │ ├── ExamAvatar12Jul2017FW.sln │ └── ExamAvatar12Jul2017FW │ │ ├── App.config │ │ ├── Core │ │ ├── Engine.cs │ │ └── NationsBuilder.cs │ │ ├── ExamAvatar12Jul2017FW.csproj │ │ ├── ExamAvatar12Jul2017FW.zip │ │ ├── Factories │ │ ├── BenderFactory.cs │ │ └── MonumentFactory.cs │ │ ├── Models │ │ ├── Benders │ │ │ ├── AirBender.cs │ │ │ ├── Bender.cs │ │ │ ├── EarthBender.cs │ │ │ ├── FireBender.cs │ │ │ └── WaterBender.cs │ │ ├── Monuments │ │ │ ├── AirMonument.cs │ │ │ ├── EarthMonument.cs │ │ │ ├── FireMonument.cs │ │ │ ├── Monument.cs │ │ │ └── WaterMonument.cs │ │ └── Nation.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StartUp.cs ├── ExamMinedraft16Jul2017Framework │ ├── ExamMinedraft16Jul2017Framework.sln │ └── ExamMinedraft16Jul2017Framework │ │ ├── App.config │ │ ├── Core │ │ ├── DraftManager.cs │ │ └── Engine.cs │ │ ├── ExamMinedraft16Jul2017Framework.csproj │ │ ├── ExamMinedraft16Jul2017Framework.zip │ │ ├── Factories │ │ ├── HarvesterFactory.cs │ │ └── ProviderFactory.cs │ │ ├── Models │ │ ├── Harvesters │ │ │ ├── HammerHarvester.cs │ │ │ ├── Harvester.cs │ │ │ └── SonicHarvester.cs │ │ ├── Miner.cs │ │ ├── ModeType.cs │ │ └── Providers │ │ │ ├── PressureProvider.cs │ │ │ ├── Provider.cs │ │ │ └── SolarProvider.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StartUp.cs ├── ExamOOPBasic18Mar2018Fixed │ └── Structure_Skeleton (.NET Core) │ │ ├── Contracts │ │ ├── IAttackable.cs │ │ └── IHealable.cs │ │ ├── Core │ │ ├── DungeonMaster.cs │ │ └── Engine.cs │ │ ├── DungeonsAndCodeWizards.csproj │ │ ├── Factories │ │ ├── CharacterFactory.cs │ │ └── ItemFactory.cs │ │ ├── Models │ │ ├── Bags │ │ │ ├── Backpack.cs │ │ │ ├── Bag.cs │ │ │ └── Satchel.cs │ │ ├── Characters │ │ │ ├── Character.cs │ │ │ ├── Cleric.cs │ │ │ └── Warrior.cs │ │ ├── Faction.cs │ │ └── Items │ │ │ ├── ArmorRepairKit.cs │ │ │ ├── HealthPotion.cs │ │ │ ├── Item.cs │ │ │ └── PoisonPotion.cs │ │ ├── StartUp.cs │ │ └── Structure_Skeleton (.NET Core).zip ├── ExamSystemSplit10Jul2016 │ ├── ExamSystemSplit10Jul2016.sln │ └── ExamSystemSplit10Jul2016 │ │ ├── App.config │ │ ├── Core │ │ ├── Engine.cs │ │ └── NetworkManager.cs │ │ ├── ExamSystemSplit10Jul2016.csproj │ │ ├── ExamSystemSplit10Jul2016.zip │ │ ├── Models │ │ ├── Component.cs │ │ ├── Hardware │ │ │ ├── Hardware.cs │ │ │ ├── Heavy.cs │ │ │ └── Power.cs │ │ ├── Network.cs │ │ └── Software │ │ │ ├── Express.cs │ │ │ ├── Light.cs │ │ │ └── Software.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── StartUp.cs ├── GrandPrixExamFramework │ ├── GrandPrixExamFramework.sln │ └── GrandPrixExamFramework │ │ ├── App.config │ │ ├── Core │ │ ├── Engine.cs │ │ └── RaceTower.cs │ │ ├── Factories │ │ ├── DriverFactory.cs │ │ └── TyreFactory.cs │ │ ├── GrandPrixExamFramework.csproj │ │ ├── GrandPrixExamFramework.zip │ │ ├── Models │ │ ├── Car.cs │ │ ├── Drivers │ │ │ ├── AggressiveDriver.cs │ │ │ ├── Driver.cs │ │ │ └── EnduranceDriver.cs │ │ └── Tyres │ │ │ ├── HardTyre.cs │ │ │ ├── Tyre.cs │ │ │ └── UltrasoftTyre.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── StartUp.cs │ │ └── Weather.cs ├── InheritanceExercises │ ├── 01.Person │ │ ├── 01.Person.csproj │ │ ├── 01.Person.zip │ │ ├── Child.cs │ │ ├── Person.cs │ │ └── Program.cs │ ├── 02.BookShop │ │ ├── 02.BookShop.csproj │ │ ├── 02.BookShop.zip │ │ ├── Book.cs │ │ ├── GoldenEditionBook.cs │ │ └── Program.cs │ ├── 03.Mankind │ │ ├── 03.Mankind.csproj │ │ ├── 03.Mankind.zip │ │ ├── Human.cs │ │ ├── Program.cs │ │ ├── Student.cs │ │ └── Worker.cs │ ├── 04.OnlineRadioDatabase │ │ ├── 04.OnlineRadioDatabase.csproj │ │ ├── 04.OnlineRadioDatabase.zip │ │ ├── Artist.cs │ │ ├── Exceptions │ │ │ ├── InvalidArtistNameException.cs │ │ │ ├── InvalidSongException.cs │ │ │ ├── InvalidSongLengthException.cs │ │ │ ├── InvalidSongMinutesException.cs │ │ │ ├── InvalidSongNameException.cs │ │ │ └── InvalidSongSecondsException.cs │ │ ├── Program.cs │ │ └── Song.cs │ ├── 05.MordorsCruelPlan │ │ ├── 05.MordorsCruelPlan.csproj │ │ ├── 05.MordorsCruelPlan.zip │ │ ├── FoodFactory.cs │ │ ├── ModelsOfFood │ │ │ ├── Apple.cs │ │ │ ├── Cram.cs │ │ │ ├── Food.cs │ │ │ ├── HoneyCake.cs │ │ │ ├── Lembas.cs │ │ │ ├── Melon.cs │ │ │ ├── Mushrooms.cs │ │ │ └── Other.cs │ │ ├── ModelsOfMood │ │ │ ├── Angry.cs │ │ │ ├── Happy.cs │ │ │ ├── JavaScript.cs │ │ │ ├── Mood.cs │ │ │ └── Sad.cs │ │ ├── MoodFactory.cs │ │ └── StartUp.cs │ ├── 06.Animals │ │ ├── 06.Animals.csproj │ │ ├── 06.Animals.zip │ │ ├── Models │ │ │ ├── Animal.cs │ │ │ ├── Cat.cs │ │ │ ├── Dog.cs │ │ │ ├── Frog.cs │ │ │ ├── Kitten.cs │ │ │ └── Tomcat.cs │ │ └── StartUp.cs │ └── InheritanceExercises.sln ├── InterfacesExercises │ ├── 01.DefineAnInterfacePerson │ │ ├── 01.DefineAnInterfacePerson.csproj │ │ ├── 01.DefineAnInterfacePerson.zip │ │ ├── Citizen.cs │ │ ├── IPerson.cs │ │ └── StartUp.cs │ ├── 02.MultipleImplenetation │ │ ├── 02.MultipleImplenetation.csproj │ │ ├── 02.MultipleImplenetation.zip │ │ ├── Citizen.cs │ │ ├── Interfaces │ │ │ ├── IBirthable.cs │ │ │ ├── IIdentifiable.cs │ │ │ └── IPerson.cs │ │ └── StartUp.cs │ ├── 03.Ferrari │ │ ├── 03.Ferrari.csproj │ │ ├── 03.Ferrari.zip │ │ ├── Ferrari.cs │ │ ├── ICar.cs │ │ └── StartUp.cs │ ├── 04.Telephony │ │ ├── 04.Telephony.csproj │ │ ├── 04.Telephony.zip │ │ ├── Interfaces │ │ │ ├── IBrowseble.cs │ │ │ └── ICallable.cs │ │ ├── Smartphone.cs │ │ └── StartUp.cs │ ├── 05.BorderControl │ │ ├── 05.BorderControl.csproj │ │ ├── 05.BorderControl.zip │ │ ├── Interfaces │ │ │ └── IIdentable.cs │ │ ├── Models │ │ │ ├── Citizen.cs │ │ │ └── Robot.cs │ │ └── StartUp.cs │ ├── 06.BirthdayCelebrations │ │ ├── 06.BirthdayCelebrations.csproj │ │ ├── 06.BirthdayCelebrations.zip │ │ ├── Interfaces │ │ │ ├── IBirthable.cs │ │ │ ├── IIdentifiable.cs │ │ │ └── IPerson.cs │ │ ├── Models │ │ │ ├── Citizen.cs │ │ │ ├── Pet.cs │ │ │ └── Robot.cs │ │ └── StartUp.cs │ ├── 07.FoodShortage │ │ ├── 07.FoodShortage.csproj │ │ ├── 07.FoodShortage.zip │ │ ├── Interfaces │ │ │ └── IBuyer.cs │ │ ├── Models │ │ │ ├── Citizen.cs │ │ │ └── Rebel.cs │ │ └── StartUp.cs │ ├── 08.MilitaryElite │ │ ├── 08.MilitaryElite.csproj │ │ ├── 08.MilitaryElite.zip │ │ ├── Interfaces │ │ │ ├── ICommando.cs │ │ │ ├── IEngineer.cs │ │ │ ├── ILeutenantGeneral.cs │ │ │ ├── IMission.cs │ │ │ ├── IPrivate.cs │ │ │ ├── IRepair.cs │ │ │ ├── ISoldier.cs │ │ │ ├── ISpecialisedSoldier.cs │ │ │ └── ISpy.cs │ │ ├── Models │ │ │ ├── Commando.cs │ │ │ ├── Engineer.cs │ │ │ ├── LeutenantGeneral.cs │ │ │ ├── Mission.cs │ │ │ ├── Private.cs │ │ │ ├── Repair.cs │ │ │ ├── Soldier.cs │ │ │ ├── SpecialisedSoldier.cs │ │ │ └── Spy.cs │ │ └── StartUp.cs │ ├── 09.CollectionHierarchy │ │ ├── 09.CollectionHierarchy.csproj │ │ ├── 09.CollectionHierarchy.zip │ │ ├── Interfaces │ │ │ ├── IAddCollection.cs │ │ │ ├── IAddRemoveCollection.cs │ │ │ └── IMyList.cs │ │ ├── Models │ │ │ ├── AddCollection.cs │ │ │ ├── AddRemoveCollection.cs │ │ │ └── MyList.cs │ │ └── StartUp.cs │ ├── 10.ExplicitInterfaces │ │ ├── 10.ExplicitInterfaces.csproj │ │ ├── 10.ExplicitInterfaces.zip │ │ ├── Citizen.cs │ │ ├── Interfaces │ │ │ ├── IPerson.cs │ │ │ └── IResident.cs │ │ └── StartUp.cs │ └── InterfacesExercises.sln ├── PolymorphismExercises │ ├── 01.Vehicles │ │ ├── 01.Vehicles.csproj │ │ ├── 01.Vehicles.zip │ │ ├── Models │ │ │ ├── Car.cs │ │ │ ├── IVehicle.cs │ │ │ ├── Truck.cs │ │ │ └── Vehicle.cs │ │ └── StartUp.cs │ ├── 02.VehiclesExtension │ │ ├── 02.VehiclesExtension.csproj │ │ ├── 02.VehiclesExtension.zip │ │ ├── Models │ │ │ ├── Bus.cs │ │ │ ├── Car.cs │ │ │ ├── Truck.cs │ │ │ └── Vehicle.cs │ │ └── StartUp.cs │ ├── 03.WildFarm │ │ ├── 03.WildFarm.csproj │ │ ├── 03.WildFarm.zip │ │ ├── Factories │ │ │ ├── AnimalFactory.cs │ │ │ └── FoodFactory.cs │ │ ├── Models │ │ │ ├── Animals │ │ │ │ ├── AbstractClasses │ │ │ │ │ ├── Animal.cs │ │ │ │ │ ├── Bird.cs │ │ │ │ │ ├── Feline.cs │ │ │ │ │ └── Mammal.cs │ │ │ │ ├── Cat.cs │ │ │ │ ├── Dog.cs │ │ │ │ ├── Hen.cs │ │ │ │ ├── Mouse.cs │ │ │ │ ├── Owl.cs │ │ │ │ └── Tiger.cs │ │ │ ├── Foods │ │ │ │ ├── Food.cs │ │ │ │ ├── Fruit.cs │ │ │ │ ├── Meat.cs │ │ │ │ ├── Seeds.cs │ │ │ │ └── Vegetable.cs │ │ │ └── IAnimal.cs │ │ └── StartUp.cs │ └── PolymorphismExercises.sln ├── ResourcesDocx │ ├── 01. CSharp-OOP-Basics-Defining-Classes-Exercises.docx │ ├── 01. CSharp-OOP-Basics-Defining-Classes-Lab.docx │ ├── 02. CSharp-OOP-Basics-Working-with-Abstraction-Exercises.docx │ ├── 03. CSharp-OOP-Basics-Encapsulation-Exercises.docx │ ├── 03. CSharp-OOP-Basics-Encapsulation-Lab.docx │ ├── 04. CSharp-OOP-Basics-Inheritance-Exercises.docx │ ├── 05. CSharp-OOP-Basics-Interfaces-And-Abstraction-Exercises.docx │ ├── 06. CSharp-OOP-Basics-Polymorphism-Exercises.docx │ ├── 07. CSharp-OOP-Basics-Workshop-Part-1(1).docx │ ├── 07. CSharp-OOP-Basics-Workshop-Part-2.docx │ ├── 07. CSharp-OOP-Basics-Workshop-Part-3.docx │ ├── CSharp-OOP-Basics-Exam-Prep-Avatar.docx │ ├── CSharp-OOP-Basics-Exam-Prep-GrandPrix.docx │ ├── CSharp-OOP-Basics-Exam-Prep-Minedraft.docx │ ├── CSharp-OOP-Basics-Exam-Prep-NeedForSpeed.docx │ ├── CSharp-OOP-Basics-Exam-Prep-SystemSplit.docx │ └── Structure_Problem DescriptionExam18Mar2018.docx ├── WorkingWithAbstractionLab │ ├── 01.RhombusOfStars │ │ ├── 01.RhombusOfStars.csproj │ │ └── Program.cs │ ├── 02.PointInRectangle │ │ ├── 02.PointInRectangle.csproj │ │ ├── 02.PointInRectangle.zip │ │ ├── Point.cs │ │ ├── Program.cs │ │ └── Rectangle.cs │ ├── 03.StudentSystem │ │ ├── 03.StudentSystem.csproj │ │ ├── 03.StudentSystem.zip │ │ ├── Program.cs │ │ ├── Student.cs │ │ └── StudentSystem.cs │ ├── 04.HotelReservation │ │ ├── 04.HotelReservation.csproj │ │ ├── 04.HotelReservation.zip │ │ ├── DiscountTypes.cs │ │ ├── PriceCalculator.cs │ │ ├── Program.cs │ │ └── Seasons.cs │ ├── P03_StudentSystem │ │ ├── P03_StudentSystem.csproj │ │ ├── StartUp.cs │ │ └── Student.cs │ └── WorkingWithAbstractionLab.sln ├── Workshop │ ├── Forum.Data │ │ ├── DataMapper.cs │ │ ├── Forum.Data.csproj │ │ └── ForumData.cs │ ├── Forum.Models │ │ ├── Category.cs │ │ ├── Forum.Models.csproj │ │ ├── Post.cs │ │ ├── Reply.cs │ │ └── User.cs │ ├── Workshop.sln │ ├── Workshop │ │ ├── Controllers │ │ │ ├── AddPostController.cs │ │ │ ├── AddReplyController.cs │ │ │ ├── CategoriesController.cs │ │ │ ├── CategoryController.cs │ │ │ ├── Contracts │ │ │ │ ├── IController.cs │ │ │ │ ├── IPaginationController.cs │ │ │ │ ├── IReadUserInfoController.cs │ │ │ │ └── IUserRestrictedController.cs │ │ │ ├── LoginController.cs │ │ │ ├── MainController.cs │ │ │ ├── PostDetailsController.cs │ │ │ └── SignUpController.cs │ │ ├── Engine.cs │ │ ├── Forum.App.csproj │ │ ├── InvalidCommandException.cs │ │ ├── MenuController.cs │ │ ├── MenuState.cs │ │ ├── ReadMe │ │ │ ├── ConsoleSpinner.cs │ │ │ └── ReadMe.cs │ │ ├── Services │ │ │ ├── PostService.cs │ │ │ └── UserService.cs │ │ ├── StartUp.cs │ │ └── UserInterface │ │ │ ├── Contracts │ │ │ ├── IInput.cs │ │ │ ├── ILabel.cs │ │ │ ├── IPositionable.cs │ │ │ └── IView.cs │ │ │ ├── ForumViewEngine.cs │ │ │ ├── Input │ │ │ ├── StringProcessor.cs │ │ │ └── TextArea.cs │ │ │ ├── Label.cs │ │ │ ├── Position.cs │ │ │ ├── ViewModels │ │ │ ├── PostViewModel.cs │ │ │ └── ReplyViewModel.cs │ │ │ └── Views │ │ │ ├── AddPostView.cs │ │ │ ├── AddReplyView.cs │ │ │ ├── CategoriesView.cs │ │ │ ├── CategoryView.cs │ │ │ ├── LogInView.cs │ │ │ ├── MainView.cs │ │ │ ├── PostDetailsView.cs │ │ │ └── SignUpView.cs │ └── data │ │ ├── categories.csv │ │ ├── config.ini │ │ ├── posts.csv │ │ ├── replies.csv │ │ └── users.csv └── notesExam.txt ├── C#Advanced ├── AdvancedExam03Sep2017 │ ├── 01. Dangerous Floor_Условие.docx │ ├── 01.DangerousFloor │ │ ├── 01.DangerousFloor.csproj │ │ └── DangerousFloor.cs │ ├── 02. Crypto Master_Условие.pdf │ ├── 02.CryptoMaster │ │ ├── 02.CryptoMaster.csproj │ │ └── CryptoMaster.cs │ ├── 03. Greedy Times_Условие.docx │ ├── 03.GreedyTimes │ │ ├── 03.GreedyTimes.csproj │ │ └── GreedyTimes.cs │ ├── 04. Treasure Map_Условие.docx │ ├── 04.TreasureMap │ │ ├── 04.TreasureMap.csproj │ │ └── TreasureMap.cs │ └── AdvancedExam03Sep2017.sln ├── AdvancedExam11Feb2018 │ ├── 01.Problem │ │ ├── 01.Problem.csproj │ │ └── KeyRevolver.cs │ ├── 02.Problem │ │ ├── 02.Problem.csproj │ │ ├── 02.Problem.zip │ │ └── Sneaking.cs │ ├── 03.Problem │ │ ├── 03.Problem.csproj │ │ └── CryptoBlockChain.cs │ ├── 04.Problem │ │ ├── 04.Problem.csproj │ │ └── HitList.cs │ └── AdvancedExam11Feb2018.sln ├── AdvancedExam19Jun2016 │ ├── 01. Cubic Artillery_Условие.docx │ ├── 01.CubicArtillery │ │ ├── 01.CubicArtillery.csproj │ │ ├── Bunker.cs │ │ └── CubicArtillery.cs │ ├── 02. Cubic's Rube_Условие.docx │ ├── 02.Cubic'sRube │ │ ├── 02.Cubic'sRube.csproj │ │ └── CubicSRube.cs │ ├── 03. Cubic Messages_Условие.docx │ ├── 03.CubicsMessage │ │ ├── 03.CubicsMessage.csproj │ │ └── CubicsMessage.cs │ ├── 04. Cubic Assault_Условие.docx │ ├── 04.CubicAssault │ │ ├── 04.CubicAssault.csproj │ │ └── CubicAssault.cs │ └── AdvancedExam19Jun2016.sln ├── AdvancedExam25June2017 │ ├── 01. Regeh_Условие.docx │ ├── 01.Regeh │ │ ├── 01.Regeh.csproj │ │ └── Regeh.cs │ ├── 02. Knight Game_Условие.docx │ ├── 02.KnightGame │ │ ├── 02.KnightGame.csproj │ │ └── KnightGame.cs │ ├── 03. Number Wars_Условие.docx │ ├── 03.NumberWars │ │ ├── 03.NumberWars.csproj │ │ └── NumberWars.cs │ ├── 04. Hospital_Условие.docx │ ├── 04.Hospital │ │ ├── 04.Hospital.csproj │ │ └── Hospital.cs │ └── AdvancedExam25June2017.sln ├── BashSoft-1-st-stage-final │ └── StoryMode 1-st stage final │ │ ├── BashSoft.docx │ │ └── StoryMode │ │ ├── BashSoft │ │ ├── BashSoft.csproj │ │ ├── DirectoryInfo.cs │ │ ├── Files │ │ │ ├── Mismatches.txt │ │ │ ├── actual.txt │ │ │ ├── data.txt │ │ │ ├── dataNew.txt │ │ │ ├── expected.txt │ │ │ ├── getHelp.txt │ │ │ ├── test1.txt │ │ │ ├── test2.txt │ │ │ └── test3.txt │ │ ├── IO │ │ │ ├── CommandInterpreter.cs │ │ │ ├── IOManager.cs │ │ │ ├── InputReader.cs │ │ │ └── OutputWriter.cs │ │ ├── Judge │ │ │ └── Tester.cs │ │ ├── Repository │ │ │ ├── RepositoryFilters.cs │ │ │ ├── RepositorySorters.cs │ │ │ └── StudentsRepository.cs │ │ ├── StartUp.cs │ │ └── Static data │ │ │ ├── ExceptionMessages.cs │ │ │ └── SessionData.cs │ │ ├── Mismatches.txt │ │ └── StoryMode.sln ├── Functional Programming - Exercises │ ├── 01. Action Print │ │ ├── 01. Action Print.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 02. Knights of Honor │ │ ├── 02. Knights of Honor.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 03. Custom Min Function │ │ ├── 03. Custom Min Function.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 04. Find Evens or Odds │ │ ├── 04. Find Evens or Odds.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 04. Functional-Programming-Exercises.docx │ ├── 05. Applied Arithmetics │ │ ├── 05. Applied Arithmetics.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 06. Reverse And Exclude │ │ ├── 06. Reverse And Exclude.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 07. Predicate For Names │ │ ├── 07. Predicate For Names.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 08. Custom Comparator │ │ ├── 08. Custom Comparator.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 09. List Of Predicates │ │ ├── 09. List Of Predicates.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 10. Predicate Party! │ │ ├── 10. Predicate Party!.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 11. ThePartyReservationFilterMod │ │ ├── 11. ThePartyReservationFilterMod.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 12. Inferno III │ │ ├── 12. Inferno III.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── 13. TriFunction │ │ ├── 13. TriFunction.csproj │ │ ├── App.config │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Functional Programming - Exercises.sln │ └── credits.txt ├── MultidimensionalArraysExercises │ ├── 01.MatrixOfPalindromes │ │ ├── 01.MatrixOfPalindromes.csproj │ │ └── MatrixOfPalindromes.cs │ ├── 02. Multidimensional-Arrays-Exercises.docx │ ├── 02.DiagonalDifference │ │ ├── 02.DiagonalDifference.csproj │ │ └── DiagonalDifference.cs │ ├── 03.2x2SquaresInMatrix │ │ ├── 03.2x2SquaresInMatrix.csproj │ │ └── 2x2SquaresInMatrix.cs │ ├── 04.MaximalSum │ │ ├── 04.MaximalSum.csproj │ │ └── MaximalSum.cs │ ├── 05.RubikSMatrix │ │ ├── 05.RubikSMatrix.csproj │ │ └── RubikSMatrix.cs │ ├── 06.TargetPractice │ │ ├── 06.TargetPractice.csproj │ │ └── TargetPractice.cs │ ├── 07.LegoBlocks │ │ ├── 07.LegoBlocks.csproj │ │ └── LegoBlocks.cs │ ├── 08.RadioactiveMutantVampireBunnies │ │ ├── 08.RadioactiveMutantVampireBunnies.csproj │ │ └── RadioactiveMutantVampireBunnies.cs │ ├── 09.Crossfire │ │ ├── 09.Crossfire.csproj │ │ └── Crossfire.cs │ ├── 10.TheHeiganDance │ │ ├── 10.TheHeiganDance.csproj │ │ └── TheHeiganDance.cs │ ├── 11.TheParkingSystem │ │ ├── 11.TheParkingSystem.csproj │ │ └── TheParkingSystem.cs │ ├── 12.StringMatrixRotation │ │ ├── 12.StringMatrixRotation.csproj │ │ └── StringMatrixRotation.cs │ └── MultidimensionalArraysExercises.sln ├── MultidimensionalArraysLab │ ├── 01.SumMatrixElements │ │ ├── 01.SumMatrixElements.csproj │ │ └── SumMatrixElements.cs │ ├── 02.SquareWithMaxSum │ │ ├── 02.SquareWithMaxSum.csproj │ │ └── SquareWithMaxSum.cs │ ├── 03.GroupNumbers │ │ ├── 03.GroupNumbers.csproj │ │ └── GroupNumbers.cs │ ├── 04.PascalTriangle │ │ ├── 04.PascalTriangle.csproj │ │ └── PascalTriangle.cs │ └── MultidimensionalArraysLab.sln ├── StacksAndQueuesExercises │ ├── 01. Stacks-And-Queues-Exercises.docx │ ├── 01.ReverseNumbersWithAStack │ │ ├── 01.ReverseNumbersWithAStack.csproj │ │ └── 01.ReverseNumbersWithStack.cs │ ├── 02.BasicStackOpertaions │ │ ├── 02.BasicStackOpertaions.cs │ │ └── 02.BasicStackOpertaions.csproj │ ├── 03.MaxElement │ │ ├── 03.MaxElement.cs │ │ └── 03.MaxElement.csproj │ ├── 04.BasicQueueOperations │ │ ├── 04.BasicQueueOperations.cs │ │ └── 04.BasicQueueOperations.csproj │ ├── 05.SequenceWithQueue │ │ ├── 05.SequenceWithQueue.cs │ │ └── 05.SequenceWithQueue.csproj │ ├── 06.TruckTour │ │ ├── 06.TruckTour.cs │ │ └── 06.TruckTour.csproj │ ├── 07.BalancedParentheses │ │ ├── 07.BalancedParentheses.cs │ │ └── 07.BalancedParentheses.csproj │ ├── 08.RecursiveFibonacci │ │ ├── 08.RecursiveFibonacci.cs │ │ └── 08.RecursiveFibonacci.csproj │ ├── 09.StackFibonacci │ │ ├── 09.StackFibonacci.cs │ │ └── 09.StackFibonacci.csproj │ ├── 10.SimpleTextEditor │ │ ├── 10.SimpleTextEditor.cs │ │ └── 10.SimpleTextEditor.csproj │ ├── 11.PoisonousPlants │ │ ├── 11.PoisonousPlants.cs │ │ └── 11.PoisonousPlants.csproj │ └── StacksAndQueuesExercises.sln ├── StacksAndQueuesLab │ ├── 01.ReverseStrings │ │ ├── 01.ReverseStrings.cs │ │ └── 01.ReverseStrings.csproj │ ├── 02.SimpleCalculator │ │ ├── 02.SimpleCalculator.cs │ │ └── 02.SimpleCalculator.csproj │ ├── 03.DecimalToBinaryConverter │ │ ├── 03.DecimalToBinaryConverter.cs │ │ └── 03.DecimalToBinaryConverter.csproj │ ├── 04.HotPotato │ │ ├── 05.HotPotato.cs │ │ └── 05.HotPotato.csproj │ ├── 04.MatchingBrackets │ │ ├── 04.MatchingBrackets.cs │ │ └── 04.MatchingBrackets.csproj │ ├── 06.TrafficLight │ │ ├── 06.TrafficLight.cs │ │ └── 06.TrafficLight.csproj │ └── StacksAndQueuesLab.sln └── StreamsExercises │ ├── 01.OddLines │ ├── 01.OddLines.csproj │ └── OddLines.cs │ ├── 02.LineNumbers │ ├── 02.LineNumbers.csproj │ └── LineNumbers.cs │ ├── 03. Streams-Exercise.docx │ ├── 03.WordCount │ ├── 03.WordCount.csproj │ ├── WordCount.cs │ └── words.txt │ ├── 04.CopyBinaryFile │ ├── 04.CopyBinaryFile.csproj │ └── CopyBinaryFile.cs │ ├── 05.SlicingFile │ ├── 05.SlicingFile.csproj │ └── SlicingFile.cs │ ├── 06.ZippingSlicedFiles │ ├── 06.ZippingSlicedFiles.csproj │ └── ZippingSlicedFiles.cs │ ├── 07. DirectoryTraversal │ ├── 07. DirectoryTraversal.csproj │ └── DirectoryTraversal.cs │ ├── 08.FullDirectoryTraversal │ ├── 08.FullDirectoryTraversal.csproj │ └── FullDirectoryTraversal.cs │ ├── 09.HTTPServer │ ├── 09.HTTPServer.csproj │ └── HTTPServer.cs │ ├── DelBinObj.bat │ ├── Files │ ├── copyMe.png │ ├── error.html │ ├── index.html │ ├── info.html │ ├── sliceMe.mp4 │ └── text.txt │ └── StreamsExercises.sln └── LICENSE /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/.gitignore -------------------------------------------------------------------------------- /C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/Forum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/Forum.sln -------------------------------------------------------------------------------- /C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/config.ini -------------------------------------------------------------------------------- /C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/posts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/posts.csv -------------------------------------------------------------------------------- /C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/replies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/replies.csv -------------------------------------------------------------------------------- /C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/07. CSharp-OOP-Advanced-Workshop-Skeleton/data/users.csv -------------------------------------------------------------------------------- /C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/BashSoft/Files/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/BashSoft/Files/data.txt -------------------------------------------------------------------------------- /C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/BashSoft/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/BashSoft/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/Mismatches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/SimpleJudge/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/SimpleJudge/Tester.cs -------------------------------------------------------------------------------- /C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/StoryMode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/StoryMode.sln -------------------------------------------------------------------------------- /C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/StoryMode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/StoryMode.zip -------------------------------------------------------------------------------- /C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/BashSoft-thirdStage-Final/StoryMode/Tester.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/01.GenericBoxOfString/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/01.GenericBoxOfString/Box.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/01.GenericBoxOfString/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/01.GenericBoxOfString/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/02.GenericBoxOfInteger/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/02.GenericBoxOfInteger/Box.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/02.GenericBoxOfInteger/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/02.GenericBoxOfInteger/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/03.GenericSwapMethodString/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/03.GenericSwapMethodString/Box.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/03.GenericSwapMethodString/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/03.GenericSwapMethodString/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/04.GenericSwapMethodInteger/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/04.GenericSwapMethodInteger/Box.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/04.GenericSwapMethodInteger/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/04.GenericSwapMethodInteger/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/05.GenericCountMethodString/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/05.GenericCountMethodString/Box.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/05.GenericCountMethodString/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/05.GenericCountMethodString/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/06.GenericCountMethodDouble/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/06.GenericCountMethodDouble/Box.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/06.GenericCountMethodDouble/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/06.GenericCountMethodDouble/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/07.CustomList/07.CustomList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/07.CustomList/07.CustomList.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/07.CustomList/07.CustomList.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/07.CustomList/07.CustomList.zip -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/07.CustomList/CommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/07.CustomList/CommandInterpreter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/07.CustomList/CuslomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/07.CustomList/CuslomList.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/07.CustomList/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/07.CustomList/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/08.CustomListSorter/CommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/08.CustomListSorter/CommandInterpreter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/08.CustomListSorter/CuslomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/08.CustomListSorter/CuslomList.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/08.CustomListSorter/Sorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/08.CustomListSorter/Sorter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/08.CustomListSorter/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/08.CustomListSorter/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/09.CustomListIterator/CuslomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/09.CustomListIterator/CuslomList.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/09.CustomListIterator/Sorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/09.CustomListIterator/Sorter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/09.CustomListIterator/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/09.CustomListIterator/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/10.Tuple/10.Tuple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/10.Tuple/10.Tuple.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/10.Tuple/10.Tuple.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/10.Tuple/10.Tuple.zip -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/10.Tuple/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/10.Tuple/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/10.Tuple/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/10.Tuple/Tuple.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/11.Threeuple/11.Threeuple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/11.Threeuple/11.Threeuple.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/11.Threeuple/11.Threeuple.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/11.Threeuple/11.Threeuple.zip -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/11.Threeuple/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/11.Threeuple/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/11.Threeuple/Threeuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/11.Threeuple/Threeuple.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/GenericsExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/GenericsExercises.sln -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsExercises/GenericsExercises.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsExercises/GenericsExercises.zip -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/01.BoxOfT/01.BoxOfT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/01.BoxOfT/01.BoxOfT.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/01.BoxOfT/01.BoxOfT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/01.BoxOfT/01.BoxOfT.zip -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/01.BoxOfT/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/01.BoxOfT/Box.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/01.BoxOfT/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/01.BoxOfT/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/02.ArrayCreator/02.ArrayCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/02.ArrayCreator/02.ArrayCreator.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/02.ArrayCreator/02.ArrayCreator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/02.ArrayCreator/02.ArrayCreator.zip -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/02.ArrayCreator/ArrayCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/02.ArrayCreator/ArrayCreator.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/02.ArrayCreator/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/02.ArrayCreator/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/03.Scale/03.Scale.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/03.Scale/03.Scale.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/03.Scale/03.Scale.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/03.Scale/03.Scale.zip -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/03.Scale/Scale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/03.Scale/Scale.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/03.Scale/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/03.Scale/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/GenericsLab/GenericsLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/GenericsLab/GenericsLab.sln -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell.sln -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/App.config -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Commands/AbstractCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Commands/AbstractCommand.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Commands/HeroCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Commands/HeroCommand.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Commands/InspectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Commands/InspectCommand.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Commands/ItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Commands/ItemCommand.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Commands/QuitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Commands/QuitCommand.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Commands/RecipeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Commands/RecipeCommand.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Core/HeroManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Core/HeroManager.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Entities.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Entities.zip -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/AbstractHero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/AbstractHero.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/Assassin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/Assassin.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/Barbarian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/Barbarian.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Heroes/Wizard.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Items/AbstractItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Items/AbstractItem.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Items/CommonItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Items/CommonItem.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Items/RecipeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Entities/Items/RecipeItem.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Hell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Hell.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Hell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Hell.zip -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/IO/ConsoleReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/IO/ConsoleReader.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/IO/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/IO/ConsoleWriter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/ICommand.cs: -------------------------------------------------------------------------------- 1 | public interface ICommand 2 | { 3 | string Execute(); 4 | } 5 | -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IHero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IHero.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IInputReader.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IInventory.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IItem.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IManager.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IOutputWriter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IRecipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Interfaces/IRecipe.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/Hell/Utilities/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/Hell/Utilities/Constants.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/HeroInventory.Tests/HeroInventoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/HeroInventory.Tests/HeroInventoryTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/HellExam16Aug2017/HeroInventory.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/HellExam16Aug2017/HeroInventory.Tests/packages.config -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/01.ListIterator/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/01.ListIterator/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/02.Collection/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/02.Collection/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/03.Stack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/03.Stack.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/03.Stack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/03.Stack.zip -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/Stack.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/03.Stack/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/04.Froggy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/04.Froggy.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/04.Froggy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/04.Froggy.zip -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/Lake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/Lake.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/04.Froggy/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/07.EqualityLogic/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/07.EqualityLogic/Person.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/08.PetClinic/Clinic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/08.PetClinic/Clinic.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/08.PetClinic/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/08.PetClinic/Pet.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsExercises/08.PetClinic/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsExercises/08.PetClinic/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/01.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/01.Library.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/01.Library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/01.Library.zip -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/Book.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/Library.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/01.Library/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/02.LibraryIterator/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/02.LibraryIterator/Book.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/02.LibraryIterator/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/02.LibraryIterator/Library.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/02.LibraryIterator/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/02.LibraryIterator/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/03.ComparableBook/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/03.ComparableBook/Book.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/03.ComparableBook/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/03.ComparableBook/Library.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/03.ComparableBook/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/03.ComparableBook/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/04.BookComparer/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/04.BookComparer/Book.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/04.BookComparer/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/04.BookComparer/Library.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/04.BookComparer/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/04.BookComparer/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/IteratorsAndComparatorsLab/IteratorsAndComparatorsLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/IteratorsAndComparatorsLab/IteratorsAndComparatorsLab.sln -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/Last Army.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/Last Army.sln -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy.Tests/LastArmy.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy.Tests/LastArmy.Tests.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy.Tests/LastArmy.Tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy.Tests/LastArmy.Tests.zip -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy.Tests/MissionControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy.Tests/MissionControllerTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy.Tests/packages.config -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/App.config -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Core/GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Core/GameController.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Core/MissionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Core/MissionController.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Ammunition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Ammunition.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Gun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Gun.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Helmet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Helmet.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Knife.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Knife.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/MachineGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/MachineGun.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/NightVision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/NightVision.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/RPG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/RPG.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Weapons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Ammunitions/Weapons.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Army.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Army.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Easy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Easy.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Hard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Hard.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Medium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Medium.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Mission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Missions/Mission.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/Corporal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/Corporal.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/Ranker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/Ranker.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/Soldier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/Soldier.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/SpecialForce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/Soldiers/SpecialForce.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Entities/WareHouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Entities/WareHouse.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Factory/AmmunitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Factory/AmmunitionFactory.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Factory/MissionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Factory/MissionFactory.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Factory/SoldierFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Factory/SoldierFactory.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/IO/ConsoleReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/IO/ConsoleReader.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/IO/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/IO/ConsoleWriter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/IO/OutputMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/IO/OutputMessages.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IAmmunition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IAmmunition.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IAmmunitionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IAmmunitionFactory.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IArmy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IArmy.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IEngine.cs: -------------------------------------------------------------------------------- 1 | public interface IEngine 2 | { 3 | void Run(); 4 | } -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IGameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IGameController.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IMission.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IMissionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IMissionController.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IMissionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IMissionFactory.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IReader.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/ISoldier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/ISoldier.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/ISoldierFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/ISoldierFactory.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IWarehouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IWarehouse.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Interfaces/IWriter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Last Army.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Last Army.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/LastArmy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/LastArmy.zip -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/LastArmyMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/LastArmyMain.cs -------------------------------------------------------------------------------- /C# OOP Advanced/LastArmyExam/LastArmy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/LastArmyExam/LastArmy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/App.config -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/Interfaces/Core/IEngine.cs: -------------------------------------------------------------------------------- 1 | public interface IEngine 2 | { 3 | void Run(); 4 | } -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/Minedraft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/Minedraft.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Mindraft_Structure_Skeleton/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Minedraft.Tests/Minedraft.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Minedraft.Tests/Minedraft.Tests.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Minedraft.Tests/Minedraft.Tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Minedraft.Tests/Minedraft.Tests.zip -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Minedraft.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Minedraft.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Minedraft.Tests/ProviderControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Minedraft.Tests/ProviderControllerTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Minedraft.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Minedraft.Tests/packages.config -------------------------------------------------------------------------------- /C# OOP Advanced/MindraftExam/Minedraft.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/MindraftExam/Minedraft.sln -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/01.Stealer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/01.Stealer.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/01.Stealer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/01.Stealer.zip -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/Hacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/Hacker.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/Spy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/Spy.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/01.Stealer/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/02.HighQualityMistakes/Hacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/02.HighQualityMistakes/Hacker.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/02.HighQualityMistakes/Spy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/02.HighQualityMistakes/Spy.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/04.Collector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/04.Collector.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/04.Collector.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/04.Collector.zip -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/Hacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/Hacker.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/Spy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/Spy.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/04.Collector/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/05.CreateAttribute/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/05.CreateAttribute/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/06.CodingTracker/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/06.CodingTracker/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/06.CodingTracker/Tracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/06.CodingTracker/Tracker.cs -------------------------------------------------------------------------------- /C# OOP Advanced/ReflectionAndAttributesLab/ReflectionAndAttributesLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ReflectionAndAttributesLab/ReflectionAndAttributesLab.sln -------------------------------------------------------------------------------- /C# OOP Advanced/ResourcesDoxsOOPAdvanced/BashSoft-OOP-Advanced.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ResourcesDoxsOOPAdvanced/BashSoft-OOP-Advanced.docx -------------------------------------------------------------------------------- /C# OOP Advanced/ResourcesDoxsOOPAdvanced/LastArmy_Structure.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ResourcesDoxsOOPAdvanced/LastArmy_Structure.docx -------------------------------------------------------------------------------- /C# OOP Advanced/ResourcesDoxsOOPAdvanced/Minedraft_Structure_7Sept2017.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ResourcesDoxsOOPAdvanced/Minedraft_Structure_7Sept2017.docx -------------------------------------------------------------------------------- /C# OOP Advanced/ResourcesDoxsOOPAdvanced/Structure_Условие(1).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ResourcesDoxsOOPAdvanced/Structure_Условие(1).docx -------------------------------------------------------------------------------- /C# OOP Advanced/ResourcesDoxsOOPAdvanced/Structure_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/ResourcesDoxsOOPAdvanced/Structure_Условие.docx -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Engine/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Engine/Controller.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Factories/FactoryAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Factories/FactoryAppender.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Factories/FactoryLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Factories/FactoryLayout.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/IAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/IAppender.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/ILayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/ILayout.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/ILogger.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/IReader.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Interfaces/IWriter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Logger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Logger.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/Enums/ReportLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/Enums/ReportLevel.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/LayoutModels/XmlLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/LayoutModels/XmlLayout.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/LogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/LogFile.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/LoggerModels/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Models/LoggerModels/Logger.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Program.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/RWModels/ConsoleReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/RWModels/ConsoleReader.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/RWModels/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/RWModels/ConsoleWriter.cs -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/Logger/Reports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/Logger/Reports.txt -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/SOLIDExerciseLogger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/SOLIDExerciseLogger.sln -------------------------------------------------------------------------------- /C# OOP Advanced/SOLIDExerciseLogger/SOLIDExerciseLogger.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/SOLIDExerciseLogger/SOLIDExerciseLogger.zip -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/01.Database/01.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/01.Database/01.Database.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/01.Database/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/01.Database/Database.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/01.Database/IDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/01.Database/IDatabase.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/01.Database/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/01.Database/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/Database.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/IDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/IDatabase.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/IPerson.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/02.ExtendedDatabase/Person.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/03.IteratorProject/ListyIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/03.IteratorProject/ListyIterator.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/05.IntegrationTests/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/05.IntegrationTests/Category.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/05.IntegrationTests/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/05.IntegrationTests/User.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/06.Tweeter/06.Tweeter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/06.Tweeter/06.Tweeter.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/06.Tweeter/Contracts/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/06.Tweeter/Contracts/IClient.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/06.Tweeter/Contracts/ITweet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/06.Tweeter/Contracts/ITweet.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/06.Tweeter/Models/Tweet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/06.Tweeter/Models/Tweet.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/06.Tweeter/Models/TweeterClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/06.Tweeter/Models/TweeterClient.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/07.Hack/07.Hack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/07.Hack/07.Hack.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/07.Hack/IMathAbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/07.Hack/IMathAbs.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/07.Hack/IMathFloor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/07.Hack/IMathFloor.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/07.Hack/MathInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/07.Hack/MathInt.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/08.CustomLinkedList/DynamicList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/08.CustomLinkedList/DynamicList.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/09.DateTimeNowAddDays/IDateTimeNow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/09.DateTimeNowAddDays/IDateTimeNow.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/BubbleSort/04.BubbleSort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/BubbleSort/04.BubbleSort.csproj -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/BubbleSort/Bubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/BubbleSort/Bubble.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTestingExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTestingExercises.sln -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTestingExercises.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTestingExercises.zip -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/BubbleSortTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/BubbleSortTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/CustomLinkedListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/CustomLinkedListTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/DatabaseTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/DateTimeNowAddDaysTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/DateTimeNowAddDaysTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/ExtendedDatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/ExtendedDatabaseTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/HackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/HackTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/ListyIteratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/ListyIteratorTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/TweeterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/TweeterTests.cs -------------------------------------------------------------------------------- /C# OOP Advanced/UnitTestingExercises/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Advanced/UnitTestingExercises/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/BashSoft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/BashSoft.csproj -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/DirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/DirectoryInfo.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/Mismatches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/Mismatches.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/actual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/actual.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/data.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/dataNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/dataNew.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/expected.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/getHelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/getHelp.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/test1.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/test2.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Files/test3.txt -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/IO/IOManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/IO/IOManager.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/IO/InputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/IO/InputReader.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/IO/OutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/IO/OutputWriter.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Judge/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Judge/Tester.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Models/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Models/Course.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Models/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/Models/Student.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/BashSoft/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/Mismatches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/SimpleJudge/SimpleJudge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/SimpleJudge/SimpleJudge.csproj -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/SimpleJudge/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/SimpleJudge/Tester.cs -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/StoryMode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/StoryMode.sln -------------------------------------------------------------------------------- /C# OOP Basics/BashSoft-SecondStage/StoryMode/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/BashSoft-SecondStage/StoryMode/Tester.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/01.DefineAClassPerson/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/01.DefineAClassPerson/Person.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/01.DefineAClassPerson/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/01.DefineAClassPerson/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/04.OpinionPoll/04.OpinionPoll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/04.OpinionPoll/04.OpinionPoll.sln -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/05.DateModifier/05.DateModifier.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/05.DateModifier/05.DateModifier.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/05.DateModifier/DateModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/05.DateModifier/DateModifier.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/05.DateModifier/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/05.DateModifier/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/06.CompanyRoster/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/06.CompanyRoster/Employee.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/06.CompanyRoster/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/06.CompanyRoster/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/07.CarSalesman/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/07.CarSalesman/Car.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/07.CarSalesman/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/07.CarSalesman/Engine.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/07.CarSalesman/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/07.CarSalesman/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/07.SpeedRacing/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/07.SpeedRacing/Car.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/07.SpeedRacing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/07.SpeedRacing/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/08.RowData/08.RowData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/08.RowData/08.RowData.csproj -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/08.RowData/08.RowData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/08.RowData/08.RowData.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/08.RowData/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/08.RowData/Car.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/08.RowData/Cargo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/08.RowData/Cargo.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/08.RowData/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/08.RowData/Engine.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/08.RowData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/08.RowData/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/08.RowData/Tire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/08.RowData/Tire.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/10.CarSalesman/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/10.CarSalesman/Car.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/10.CarSalesman/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/10.CarSalesman/Engine.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/10.CarSalesman/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/10.CarSalesman/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/11.PokemonTrainer/Pokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/11.PokemonTrainer/Pokemon.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/11.PokemonTrainer/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/11.PokemonTrainer/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/11.PokemonTrainer/Trainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/11.PokemonTrainer/Trainer.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/12.Google.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/12.Google.csproj -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/12.Google.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/12.Google.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/Car.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/Company.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/FamilyMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/FamilyMember.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/Person.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/Pokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/Pokemon.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/12.Google/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/12.Google/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/13.FamilyTree/13.FamilyTree.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/13.FamilyTree/13.FamilyTree.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/13.FamilyTree/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/13.FamilyTree/Person.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/13.FamilyTree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/13.FamilyTree/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/14.CatLady/14.CatLady.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/14.CatLady/14.CatLady.csproj -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/14.CatLady/14.CatLady.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/14.CatLady/14.CatLady.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/14.CatLady/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/14.CatLady/Cat.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/14.CatLady/Cymric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/14.CatLady/Cymric.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/14.CatLady/Extraordinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/14.CatLady/Extraordinary.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/14.CatLady/Siamese.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/14.CatLady/Siamese.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/14.CatLady/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/14.CatLady/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/15.DrawingTool/15.DrawingTool.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/15.DrawingTool/15.DrawingTool.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/15.DrawingTool/CorDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/15.DrawingTool/CorDraw.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/15.DrawingTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/15.DrawingTool/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/15.DrawingTool/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/15.DrawingTool/Rectangle.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/15.DrawingTool/Square.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/15.DrawingTool/Square.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/DefiningClassesExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/DefiningClassesExercises.sln -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesExercises/DefiningClassesExercises.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesExercises/DefiningClassesExercises.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/01.BankAccount/01.BankAccount.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/01.BankAccount/01.BankAccount.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/01.BankAccount/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/01.BankAccount/BankAccount.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/01.BankAccount/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/01.BankAccount/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/01.BankAccount/_01.BankAccount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/01.BankAccount/_01.BankAccount.csproj -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/02.BankAccountMethods/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/02.BankAccountMethods/BankAccount.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/02.BankAccountMethods/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/02.BankAccountMethods/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/03.TestClient/03.TestClient.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/03.TestClient/03.TestClient.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/03.TestClient/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/03.TestClient/BankAccount.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/03.TestClient/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/03.TestClient/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/03.TestClient/_03.TestClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/03.TestClient/_03.TestClient.csproj -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/04.PersonClass/04.PersonClass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/04.PersonClass/04.PersonClass.csproj -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/04.PersonClass/04.PersonClass.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/04.PersonClass/04.PersonClass.zip -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/04.PersonClass/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/04.PersonClass/BankAccount.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/04.PersonClass/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/04.PersonClass/Person.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/04.PersonClass/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/04.PersonClass/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/DefiningClassesLab/DefiningClassesLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/DefiningClassesLab/DefiningClassesLab.sln -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/01.ClassBox/01.ClassBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/01.ClassBox/01.ClassBox.csproj -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/01.ClassBox/01.ClassBox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/01.ClassBox/01.ClassBox.zip -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/01.ClassBox/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/01.ClassBox/Box.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/01.ClassBox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/01.ClassBox/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/02.ClassBoxDataValidation/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/02.ClassBoxDataValidation/Box.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/03.AnimalFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/03.AnimalFarm.csproj -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/03.AnimalFarm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/03.AnimalFarm.zip -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/Chicken.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/03.AnimalFarm/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/04.ShoppingSpree/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/04.ShoppingSpree/Person.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/04.ShoppingSpree/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/04.ShoppingSpree/Product.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/04.ShoppingSpree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/04.ShoppingSpree/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Dough.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Dough.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Pizza.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Topping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/05.PizzaCalories/Topping.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Player.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Stat.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/06.FootbalTeamGenerator/Team.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/AnimalFarm/AnimalFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/AnimalFarm/AnimalFarm.csproj -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/AnimalFarm/AnimalFarm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/AnimalFarm/AnimalFarm.zip -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/AnimalFarm/Models/Chicken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/AnimalFarm/Models/Chicken.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/AnimalFarm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/AnimalFarm/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/Encapsulation-Exercises/Encapsulation-Exercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Encapsulation-Exercises/Encapsulation-Exercises.sln -------------------------------------------------------------------------------- /C# OOP Basics/Exam11Jul2017NeedForSpeed/NeedForSpeedExam/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Exam11Jul2017NeedForSpeed/NeedForSpeedExam/App.config -------------------------------------------------------------------------------- /C# OOP Basics/Exam11Jul2017NeedForSpeed/NeedForSpeedExam/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Exam11Jul2017NeedForSpeed/NeedForSpeedExam/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP Basics/Exam11Jul2017NeedForSpeed/NeedForSpeedExam/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Exam11Jul2017NeedForSpeed/NeedForSpeedExam/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW.sln -------------------------------------------------------------------------------- /C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW/App.config -------------------------------------------------------------------------------- /C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW/Core/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW/Core/Engine.cs -------------------------------------------------------------------------------- /C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ExamAvatar12Jul2017FW/ExamAvatar12Jul2017FW/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/ExamSystemSplit10Jul2016/ExamSystemSplit10Jul2016.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ExamSystemSplit10Jul2016/ExamSystemSplit10Jul2016.sln -------------------------------------------------------------------------------- /C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework.sln -------------------------------------------------------------------------------- /C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework/App.config -------------------------------------------------------------------------------- /C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/GrandPrixExamFramework/GrandPrixExamFramework/Weather.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/01.Person/01.Person.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/01.Person/01.Person.csproj -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/01.Person/01.Person.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/01.Person/01.Person.zip -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/01.Person/Child.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/01.Person/Child.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/01.Person/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/01.Person/Person.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/01.Person/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/01.Person/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/02.BookShop/02.BookShop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/02.BookShop/02.BookShop.csproj -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/02.BookShop/02.BookShop.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/02.BookShop/02.BookShop.zip -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/02.BookShop/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/02.BookShop/Book.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/02.BookShop/GoldenEditionBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/02.BookShop/GoldenEditionBook.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/02.BookShop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/02.BookShop/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/03.Mankind/03.Mankind.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/03.Mankind/03.Mankind.csproj -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/03.Mankind/03.Mankind.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/03.Mankind/03.Mankind.zip -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/03.Mankind/Human.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/03.Mankind/Human.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/03.Mankind/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/03.Mankind/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/03.Mankind/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/03.Mankind/Student.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/03.Mankind/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/03.Mankind/Worker.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/04.OnlineRadioDatabase/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/04.OnlineRadioDatabase/Artist.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/04.OnlineRadioDatabase/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/04.OnlineRadioDatabase/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/04.OnlineRadioDatabase/Song.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/04.OnlineRadioDatabase/Song.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/05.MordorsCruelPlan/FoodFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/05.MordorsCruelPlan/FoodFactory.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/05.MordorsCruelPlan/MoodFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/05.MordorsCruelPlan/MoodFactory.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/05.MordorsCruelPlan/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/05.MordorsCruelPlan/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/06.Animals.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/06.Animals.csproj -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/06.Animals.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/06.Animals.zip -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/Models/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/Models/Animal.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/Models/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/Models/Cat.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/Models/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/Models/Dog.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/Models/Frog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/Models/Frog.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/Models/Kitten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/Models/Kitten.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/Models/Tomcat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/Models/Tomcat.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/06.Animals/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/06.Animals/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InheritanceExercises/InheritanceExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InheritanceExercises/InheritanceExercises.sln -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/01.DefineAnInterfacePerson/Citizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/01.DefineAnInterfacePerson/Citizen.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/01.DefineAnInterfacePerson/IPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/01.DefineAnInterfacePerson/IPerson.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/01.DefineAnInterfacePerson/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/01.DefineAnInterfacePerson/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/02.MultipleImplenetation/Citizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/02.MultipleImplenetation/Citizen.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/02.MultipleImplenetation/Interfaces/IIdentifiable.cs: -------------------------------------------------------------------------------- 1 | public interface IIdentifiable 2 | { 3 | string Id { get; } 4 | } 5 | 6 | -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/02.MultipleImplenetation/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/02.MultipleImplenetation/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/03.Ferrari/03.Ferrari.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/03.Ferrari/03.Ferrari.csproj -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/03.Ferrari/03.Ferrari.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/03.Ferrari/03.Ferrari.zip -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/03.Ferrari/Ferrari.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/03.Ferrari/Ferrari.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/03.Ferrari/ICar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/03.Ferrari/ICar.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/03.Ferrari/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/03.Ferrari/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/04.Telephony/04.Telephony.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/04.Telephony/04.Telephony.csproj -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/04.Telephony/04.Telephony.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/04.Telephony/04.Telephony.zip -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/04.Telephony/Interfaces/IBrowseble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/04.Telephony/Interfaces/IBrowseble.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/04.Telephony/Interfaces/ICallable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/04.Telephony/Interfaces/ICallable.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/04.Telephony/Smartphone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/04.Telephony/Smartphone.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/04.Telephony/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/04.Telephony/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/05.BorderControl/05.BorderControl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/05.BorderControl/05.BorderControl.zip -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/05.BorderControl/Interfaces/IIdentable.cs: -------------------------------------------------------------------------------- 1 | public interface IIdentable 2 | { 3 | string Id { get; } 4 | } 5 | 6 | -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/05.BorderControl/Models/Citizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/05.BorderControl/Models/Citizen.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/05.BorderControl/Models/Robot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/05.BorderControl/Models/Robot.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/05.BorderControl/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/05.BorderControl/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/06.BirthdayCelebrations/Interfaces/IIdentifiable.cs: -------------------------------------------------------------------------------- 1 | public interface IIdentifiable 2 | { 3 | string Id { get; } 4 | } 5 | 6 | -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/06.BirthdayCelebrations/Models/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/06.BirthdayCelebrations/Models/Pet.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/06.BirthdayCelebrations/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/06.BirthdayCelebrations/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/07.FoodShortage/07.FoodShortage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/07.FoodShortage/07.FoodShortage.csproj -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/07.FoodShortage/07.FoodShortage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/07.FoodShortage/07.FoodShortage.zip -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/07.FoodShortage/Interfaces/IBuyer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/07.FoodShortage/Interfaces/IBuyer.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/07.FoodShortage/Models/Citizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/07.FoodShortage/Models/Citizen.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/07.FoodShortage/Models/Rebel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/07.FoodShortage/Models/Rebel.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/07.FoodShortage/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/07.FoodShortage/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/08.MilitaryElite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/08.MilitaryElite.zip -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Interfaces/IPrivate.cs: -------------------------------------------------------------------------------- 1 | public interface IPrivate 2 | { 3 | double Salary { get; } 4 | } -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Interfaces/IRepair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Interfaces/IRepair.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Interfaces/ISpecialisedSoldier.cs: -------------------------------------------------------------------------------- 1 | public interface ISpecialisedSoldier : IPrivate 2 | { 3 | string Corps { get; } 4 | } -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Interfaces/ISpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Interfaces/ISpy.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Commando.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Commando.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Engineer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Engineer.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Mission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Mission.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Private.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Private.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Repair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Repair.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Soldier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Soldier.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Spy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/Models/Spy.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/08.MilitaryElite/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/08.MilitaryElite/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/09.CollectionHierarchy/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/09.CollectionHierarchy/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/10.ExplicitInterfaces/Citizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/10.ExplicitInterfaces/Citizen.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/10.ExplicitInterfaces/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/10.ExplicitInterfaces/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/InterfacesExercises/InterfacesExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/InterfacesExercises/InterfacesExercises.sln -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/01.Vehicles/01.Vehicles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/01.Vehicles/01.Vehicles.csproj -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/01.Vehicles/01.Vehicles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/01.Vehicles/01.Vehicles.zip -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/Car.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/IVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/IVehicle.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/Truck.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/01.Vehicles/Models/Vehicle.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/01.Vehicles/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/01.Vehicles/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/Models/Bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/Models/Bus.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/Models/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/Models/Car.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/Models/Truck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/Models/Truck.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/02.VehiclesExtension/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/03.WildFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/03.WildFarm.csproj -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/03.WildFarm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/03.WildFarm.zip -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Factories/FoodFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Factories/FoodFactory.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Cat.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Dog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Dog.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Hen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Hen.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Mouse.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Owl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Owl.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Tiger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Animals/Tiger.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Food.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Food.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Fruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Fruit.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Meat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Meat.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Seeds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/Foods/Seeds.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/IAnimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/Models/IAnimal.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/03.WildFarm/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/03.WildFarm/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/PolymorphismExercises/PolymorphismExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/PolymorphismExercises/PolymorphismExercises.sln -------------------------------------------------------------------------------- /C# OOP Basics/ResourcesDocx/03. CSharp-OOP-Basics-Encapsulation-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ResourcesDocx/03. CSharp-OOP-Basics-Encapsulation-Lab.docx -------------------------------------------------------------------------------- /C# OOP Basics/ResourcesDocx/07. CSharp-OOP-Basics-Workshop-Part-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ResourcesDocx/07. CSharp-OOP-Basics-Workshop-Part-2.docx -------------------------------------------------------------------------------- /C# OOP Basics/ResourcesDocx/07. CSharp-OOP-Basics-Workshop-Part-3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ResourcesDocx/07. CSharp-OOP-Basics-Workshop-Part-3.docx -------------------------------------------------------------------------------- /C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-Avatar.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-Avatar.docx -------------------------------------------------------------------------------- /C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-GrandPrix.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-GrandPrix.docx -------------------------------------------------------------------------------- /C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-Minedraft.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-Minedraft.docx -------------------------------------------------------------------------------- /C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-SystemSplit.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/ResourcesDocx/CSharp-OOP-Basics-Exam-Prep-SystemSplit.docx -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/01.RhombusOfStars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/01.RhombusOfStars/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/02.PointInRectangle/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/02.PointInRectangle/Point.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/02.PointInRectangle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/02.PointInRectangle/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/02.PointInRectangle/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/02.PointInRectangle/Rectangle.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/03.StudentSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/03.StudentSystem/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/03.StudentSystem/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/03.StudentSystem/Student.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/04.HotelReservation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/04.HotelReservation/Program.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/04.HotelReservation/Seasons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/04.HotelReservation/Seasons.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/P03_StudentSystem/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/P03_StudentSystem/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/P03_StudentSystem/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/P03_StudentSystem/Student.cs -------------------------------------------------------------------------------- /C# OOP Basics/WorkingWithAbstractionLab/WorkingWithAbstractionLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/WorkingWithAbstractionLab/WorkingWithAbstractionLab.sln -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Data/DataMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Data/DataMapper.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Data/Forum.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Data/Forum.Data.csproj -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Data/ForumData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Data/ForumData.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Models/Category.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Models/Forum.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Models/Forum.Models.csproj -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Models/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Models/Post.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Models/Reply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Models/Reply.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Forum.Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Forum.Models/User.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop.sln -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/AddPostController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/AddPostController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/AddReplyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/AddReplyController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/CategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/CategoryController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/Contracts/IController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/Contracts/IController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/LoginController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/MainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/MainController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/PostDetailsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/PostDetailsController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Controllers/SignUpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Controllers/SignUpController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Engine.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Forum.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Forum.App.csproj -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/InvalidCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/InvalidCommandException.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/MenuController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/MenuController.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/MenuState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/MenuState.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/ReadMe/ConsoleSpinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/ReadMe/ConsoleSpinner.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/ReadMe/ReadMe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/ReadMe/ReadMe.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Services/PostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Services/PostService.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/Services/UserService.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/StartUp.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/IInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/IInput.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/ILabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/ILabel.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/IPositionable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/IPositionable.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Contracts/IView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/ForumViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/ForumViewEngine.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Input/StringProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Input/StringProcessor.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Input/TextArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Input/TextArea.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Label.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Position.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/AddPostView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/AddPostView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/AddReplyView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/AddReplyView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/CategoriesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/CategoriesView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/CategoryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/CategoryView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/LogInView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/LogInView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/MainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/MainView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/PostDetailsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/PostDetailsView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/Workshop/UserInterface/Views/SignUpView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/Workshop/UserInterface/Views/SignUpView.cs -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/data/categories.csv: -------------------------------------------------------------------------------- 1 | 1;SomeMisc;1 2 | 2;charactersBookReview;2 3 | -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/data/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/data/config.ini -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/data/posts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/data/posts.csv -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/data/replies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/Workshop/data/replies.csv -------------------------------------------------------------------------------- /C# OOP Basics/Workshop/data/users.csv: -------------------------------------------------------------------------------- 1 | 1;DannyB;passD; 2 | -------------------------------------------------------------------------------- /C# OOP Basics/notesExam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C# OOP Basics/notesExam.txt -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/01. Dangerous Floor_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/01. Dangerous Floor_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/01.DangerousFloor/DangerousFloor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/01.DangerousFloor/DangerousFloor.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/02. Crypto Master_Условие.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/02. Crypto Master_Условие.pdf -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/02.CryptoMaster/02.CryptoMaster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/02.CryptoMaster/02.CryptoMaster.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/02.CryptoMaster/CryptoMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/02.CryptoMaster/CryptoMaster.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/03. Greedy Times_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/03. Greedy Times_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/03.GreedyTimes/03.GreedyTimes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/03.GreedyTimes/03.GreedyTimes.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/03.GreedyTimes/GreedyTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/03.GreedyTimes/GreedyTimes.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/04. Treasure Map_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/04. Treasure Map_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/04.TreasureMap/04.TreasureMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/04.TreasureMap/04.TreasureMap.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/04.TreasureMap/TreasureMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/04.TreasureMap/TreasureMap.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam03Sep2017/AdvancedExam03Sep2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam03Sep2017/AdvancedExam03Sep2017.sln -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/01.Problem/01.Problem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/01.Problem/01.Problem.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/01.Problem/KeyRevolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/01.Problem/KeyRevolver.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/02.Problem/02.Problem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/02.Problem/02.Problem.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/02.Problem/02.Problem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/02.Problem/02.Problem.zip -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/02.Problem/Sneaking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/02.Problem/Sneaking.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/03.Problem/03.Problem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/03.Problem/03.Problem.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/03.Problem/CryptoBlockChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/03.Problem/CryptoBlockChain.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/04.Problem/04.Problem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/04.Problem/04.Problem.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/04.Problem/HitList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/04.Problem/HitList.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam11Feb2018/AdvancedExam11Feb2018.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam11Feb2018/AdvancedExam11Feb2018.sln -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/01. Cubic Artillery_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/01. Cubic Artillery_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/01.CubicArtillery/Bunker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/01.CubicArtillery/Bunker.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/01.CubicArtillery/CubicArtillery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/01.CubicArtillery/CubicArtillery.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/02. Cubic's Rube_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/02. Cubic's Rube_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/02.Cubic'sRube/02.Cubic'sRube.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/02.Cubic'sRube/02.Cubic'sRube.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/02.Cubic'sRube/CubicSRube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/02.Cubic'sRube/CubicSRube.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/03. Cubic Messages_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/03. Cubic Messages_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/03.CubicsMessage/CubicsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/03.CubicsMessage/CubicsMessage.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/04. Cubic Assault_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/04. Cubic Assault_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/04.CubicAssault/04.CubicAssault.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/04.CubicAssault/04.CubicAssault.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/04.CubicAssault/CubicAssault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/04.CubicAssault/CubicAssault.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam19Jun2016/AdvancedExam19Jun2016.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam19Jun2016/AdvancedExam19Jun2016.sln -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/01. Regeh_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/01. Regeh_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/01.Regeh/01.Regeh.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/01.Regeh/01.Regeh.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/01.Regeh/Regeh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/01.Regeh/Regeh.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/02. Knight Game_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/02. Knight Game_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/02.KnightGame/02.KnightGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/02.KnightGame/02.KnightGame.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/02.KnightGame/KnightGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/02.KnightGame/KnightGame.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/03. Number Wars_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/03. Number Wars_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/03.NumberWars/03.NumberWars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/03.NumberWars/03.NumberWars.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/03.NumberWars/NumberWars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/03.NumberWars/NumberWars.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/04. Hospital_Условие.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/04. Hospital_Условие.docx -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/04.Hospital/04.Hospital.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/04.Hospital/04.Hospital.csproj -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/04.Hospital/Hospital.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/04.Hospital/Hospital.cs -------------------------------------------------------------------------------- /C#Advanced/AdvancedExam25June2017/AdvancedExam25June2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/AdvancedExam25June2017/AdvancedExam25June2017.sln -------------------------------------------------------------------------------- /C#Advanced/BashSoft-1-st-stage-final/StoryMode 1-st stage final/StoryMode/Mismatches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#Advanced/Functional Programming - Exercises/12. Inferno III/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/Functional Programming - Exercises/12. Inferno III/App.config -------------------------------------------------------------------------------- /C#Advanced/Functional Programming - Exercises/12. Inferno III/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/Functional Programming - Exercises/12. Inferno III/Program.cs -------------------------------------------------------------------------------- /C#Advanced/Functional Programming - Exercises/13. TriFunction/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/Functional Programming - Exercises/13. TriFunction/App.config -------------------------------------------------------------------------------- /C#Advanced/Functional Programming - Exercises/13. TriFunction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/Functional Programming - Exercises/13. TriFunction/Program.cs -------------------------------------------------------------------------------- /C#Advanced/Functional Programming - Exercises/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/Functional Programming - Exercises/credits.txt -------------------------------------------------------------------------------- /C#Advanced/MultidimensionalArraysExercises/04.MaximalSum/MaximalSum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/MultidimensionalArraysExercises/04.MaximalSum/MaximalSum.cs -------------------------------------------------------------------------------- /C#Advanced/MultidimensionalArraysExercises/07.LegoBlocks/LegoBlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/MultidimensionalArraysExercises/07.LegoBlocks/LegoBlocks.cs -------------------------------------------------------------------------------- /C#Advanced/MultidimensionalArraysExercises/09.Crossfire/Crossfire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/MultidimensionalArraysExercises/09.Crossfire/Crossfire.cs -------------------------------------------------------------------------------- /C#Advanced/MultidimensionalArraysLab/03.GroupNumbers/GroupNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/MultidimensionalArraysLab/03.GroupNumbers/GroupNumbers.cs -------------------------------------------------------------------------------- /C#Advanced/MultidimensionalArraysLab/04.PascalTriangle/PascalTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/MultidimensionalArraysLab/04.PascalTriangle/PascalTriangle.cs -------------------------------------------------------------------------------- /C#Advanced/MultidimensionalArraysLab/MultidimensionalArraysLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/MultidimensionalArraysLab/MultidimensionalArraysLab.sln -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesExercises/01. Stacks-And-Queues-Exercises.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesExercises/01. Stacks-And-Queues-Exercises.docx -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesExercises/03.MaxElement/03.MaxElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesExercises/03.MaxElement/03.MaxElement.cs -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesExercises/03.MaxElement/03.MaxElement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesExercises/03.MaxElement/03.MaxElement.csproj -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesExercises/06.TruckTour/06.TruckTour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesExercises/06.TruckTour/06.TruckTour.cs -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesExercises/06.TruckTour/06.TruckTour.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesExercises/06.TruckTour/06.TruckTour.csproj -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesExercises/StacksAndQueuesExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesExercises/StacksAndQueuesExercises.sln -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/01.ReverseStrings/01.ReverseStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/01.ReverseStrings/01.ReverseStrings.cs -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/01.ReverseStrings/01.ReverseStrings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/01.ReverseStrings/01.ReverseStrings.csproj -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/02.SimpleCalculator/02.SimpleCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/02.SimpleCalculator/02.SimpleCalculator.cs -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/04.HotPotato/05.HotPotato.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/04.HotPotato/05.HotPotato.cs -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/04.HotPotato/05.HotPotato.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/04.HotPotato/05.HotPotato.csproj -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/04.MatchingBrackets/04.MatchingBrackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/04.MatchingBrackets/04.MatchingBrackets.cs -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/06.TrafficLight/06.TrafficLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/06.TrafficLight/06.TrafficLight.cs -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/06.TrafficLight/06.TrafficLight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/06.TrafficLight/06.TrafficLight.csproj -------------------------------------------------------------------------------- /C#Advanced/StacksAndQueuesLab/StacksAndQueuesLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StacksAndQueuesLab/StacksAndQueuesLab.sln -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/01.OddLines/01.OddLines.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/01.OddLines/01.OddLines.csproj -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/01.OddLines/OddLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/01.OddLines/OddLines.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/02.LineNumbers/02.LineNumbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/02.LineNumbers/02.LineNumbers.csproj -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/02.LineNumbers/LineNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/02.LineNumbers/LineNumbers.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/03. Streams-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/03. Streams-Exercise.docx -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/03.WordCount/03.WordCount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/03.WordCount/03.WordCount.csproj -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/03.WordCount/WordCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/03.WordCount/WordCount.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/03.WordCount/words.txt: -------------------------------------------------------------------------------- 1 | quick 2 | is 3 | fault 4 | -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/04.CopyBinaryFile/04.CopyBinaryFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/04.CopyBinaryFile/04.CopyBinaryFile.csproj -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/04.CopyBinaryFile/CopyBinaryFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/04.CopyBinaryFile/CopyBinaryFile.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/05.SlicingFile/05.SlicingFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/05.SlicingFile/05.SlicingFile.csproj -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/05.SlicingFile/SlicingFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/05.SlicingFile/SlicingFile.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/06.ZippingSlicedFiles/ZippingSlicedFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/06.ZippingSlicedFiles/ZippingSlicedFiles.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/07. DirectoryTraversal/DirectoryTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/07. DirectoryTraversal/DirectoryTraversal.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/09.HTTPServer/09.HTTPServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/09.HTTPServer/09.HTTPServer.csproj -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/09.HTTPServer/HTTPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/09.HTTPServer/HTTPServer.cs -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/DelBinObj.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/DelBinObj.bat -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/Files/copyMe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/Files/copyMe.png -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/Files/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/Files/error.html -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/Files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/Files/index.html -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/Files/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/Files/info.html -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/Files/sliceMe.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/Files/sliceMe.mp4 -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/Files/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/Files/text.txt -------------------------------------------------------------------------------- /C#Advanced/StreamsExercises/StreamsExercises.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/C#Advanced/StreamsExercises/StreamsExercises.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DannyBerova/C-Fundamentals-Jan2018-SoftUni/HEAD/LICENSE --------------------------------------------------------------------------------