├── .gitattributes ├── .gitignore ├── CSharp ├── Exercises.md └── Solutions │ ├── ExerciseCoffee │ ├── ExerciseCoffee.sln │ └── Exercise_02 │ │ ├── App.config │ │ ├── ExerciseCoffee.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ExerciseComplex │ ├── .gitattributes │ ├── .gitignore │ ├── ExerciseComplex.sln │ └── Exercise_01 │ │ ├── App.config │ │ ├── ExerciseComplex.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ExerciseFraction │ ├── ExerciseFraction.sln │ └── ExerciseFraction │ │ ├── App.config │ │ ├── ExerciseFraction.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ExerciseLINQ │ ├── ExerciseLINQ.sln │ └── ExerciseLINQ │ │ ├── App.config │ │ ├── ExerciseLINQ.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ExerciseLibrary │ ├── ExerciseLibrary.sln │ └── ExerciseLibrary │ │ ├── App.config │ │ ├── Author.cs │ │ ├── Book.cs │ │ ├── ExerciseLibrary.csproj │ │ ├── Librarian.cs │ │ ├── Library.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── User.cs │ ├── ExerciseMobile │ ├── Mobile.sln │ └── Mobile │ │ ├── App.config │ │ ├── Battery.cs │ │ ├── Call.cs │ │ ├── Device.cs │ │ ├── Mobile.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Screen.cs │ │ └── Usage.cs │ ├── ExerciseMobile_SolutionByNikos │ ├── Mobile.sln │ └── Mobile │ │ ├── App.config │ │ ├── DeviceInfo │ │ ├── Battery.cs │ │ ├── KnownDevices.cs │ │ ├── Manufacturers.cs │ │ ├── MobileDevice.cs │ │ └── Screen.cs │ │ ├── DeviceUsageInfo │ │ ├── Call.cs │ │ └── DeviceUsage.cs │ │ ├── Mobile.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ExerciseSubsequence │ ├── ExerciseSubsequence.sln │ └── ExerciseSubsequence │ │ ├── App.config │ │ ├── ExerciseSubsequence.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Utilities.cs │ ├── ExerciseUniversity │ ├── Exercise_University.sln │ └── Exercise_University │ │ ├── App.config │ │ ├── Course.cs │ │ ├── Exercise_University.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Student.cs │ │ └── University.cs │ ├── ExerciseUtilities │ ├── ExerciseUtilities.sln │ └── Exercise_03 │ │ ├── App.config │ │ ├── Complex.cs │ │ ├── ExerciseUtilities.csproj │ │ ├── Fraction.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Utilities.cs │ └── ExerciseZoo │ ├── ExerciseZoo.sln │ └── Exercise_05 │ ├── App.config │ ├── ExerciseZoo.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── DesignPatterns ├── Exercises.md └── Solutions │ ├── Exercise1 │ ├── Exercise1.sln │ └── Exercise1 │ │ ├── App.config │ │ ├── Course.cs │ │ ├── Exercise1.csproj │ │ ├── Instructor.cs │ │ ├── Organizer.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── StakeHolder.cs │ │ ├── Student.cs │ │ └── packages.config │ └── Exercise2 │ ├── Exercise2.sln │ └── Exercise2 │ ├── App.config │ ├── Exercise2.csproj │ ├── FileUtilitiy.cs │ ├── MetricSet.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RegexAnalyzer.cs │ ├── SourceCodeAnalyzer.cs │ ├── SourceCodeAnalyzerFacade.cs │ ├── SourceCodeAnalyzerFactory.cs │ └── StringAnalyzer.cs ├── HTML-CSS-Razor ├── Exercises.md └── Solutions │ ├── PersonalWebsiteCSS │ ├── PersonalWebsiteCSS.sln │ └── web │ │ ├── Blog.html │ │ ├── Contact.html │ │ ├── Home.html │ │ ├── Web.Debug.config │ │ ├── Web.config │ │ ├── css │ │ └── style.css │ │ ├── img │ │ ├── bali-indonesia-tours-1.jpg │ │ ├── bali-indonesia-tours-2.jpg │ │ ├── bali-indonesia-tours-3.jpg │ │ ├── link-source-ordering-1.jpg │ │ └── personal-image.jpg │ │ └── packages.config │ ├── PersonalWebsiteHTML │ ├── PersonalWebsiteHTML.sln │ └── web │ │ ├── Blog.html │ │ ├── Contact.html │ │ ├── Home.html │ │ ├── Web.Debug.config │ │ ├── Web.config │ │ ├── img │ │ ├── bali-indonesia-tours-1.jpg │ │ ├── bali-indonesia-tours-2.jpg │ │ ├── bali-indonesia-tours-3.jpg │ │ ├── link-source-ordering-1.jpg │ │ └── personal-image.jpg │ │ └── packages.config │ └── PersonalWebsiteRazor │ ├── App_Code │ ├── Blog.cs │ ├── Categories.cs │ └── Posts.cs │ ├── Blog.cshtml │ ├── Blog.html │ ├── Contact.html │ ├── Empty.cshtml │ ├── Home.cshtml │ ├── Home.html │ ├── SQL_INIT.sql │ ├── Shared │ ├── _Footer.cshtml │ ├── _Header.cshtml │ ├── _Layout.cshtml │ ├── css │ │ └── style.css │ └── img │ │ ├── bali-indonesia-tours-1.jpg │ │ ├── bali-indonesia-tours-2.jpg │ │ ├── bali-indonesia-tours-3.jpg │ │ ├── link-source-ordering-1.jpg │ │ └── personal-image.jpg │ ├── Web.Debug.config │ ├── Web.config │ └── packages.config ├── HTML5Boilerplate ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── main.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html └── js │ ├── main.js │ └── vendor │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.11.2.min.js │ ├── modernizr-2.8.3.min.js │ └── npm.js ├── JavaScript ├── ClickEventDemo │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── index.html │ └── js │ │ ├── main.js │ │ └── vendor │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.11.2.min.js │ │ ├── modernizr-2.8.3.min.js │ │ └── npm.js ├── ES6Demo │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── index.html │ └── js │ │ ├── main.js │ │ ├── math.js │ │ └── vendor │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.11.2.min.js │ │ ├── modernizr-2.8.3.min.js │ │ └── npm.js ├── Exercises_01 │ ├── css │ │ └── main.css │ ├── index.html │ └── js │ │ └── main.js └── ProductCartDemo │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── main.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── index.html │ └── js │ ├── main.js │ └── vendor │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.11.2.min.js │ ├── modernizr-2.8.3.min.js │ └── npm.js ├── MVC ├── Exercises.md └── Solutions │ ├── Basketball │ ├── Basketball.sln │ └── Basketball │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ │ ├── ApplicationInsights.config │ │ ├── Basketball.csproj │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Migrations │ │ ├── 201705251421390_init.Designer.cs │ │ ├── 201705251421390_init.cs │ │ ├── 201705251421390_init.resx │ │ └── Configuration.cs │ │ ├── Models │ │ ├── BaseViewModel.cs │ │ ├── IndexViewModel.cs │ │ ├── JoinRequest.cs │ │ ├── MyContext.cs │ │ ├── Team.cs │ │ ├── User.cs │ │ └── ViewRequestsViewModel.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Views │ │ ├── Home │ │ │ ├── CreateTeam.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Signup.cshtml │ │ │ └── ViewRequests.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config │ ├── MVC_1 │ ├── MVC_1.sln │ └── MVC_1 │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ │ ├── ApplicationInsights.config │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ ├── HomeController.cs │ │ └── ProductsController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── MVC_1.csproj │ │ ├── Migrations │ │ ├── 201705221343105_Init.Designer.cs │ │ ├── 201705221343105_Init.cs │ │ ├── 201705221343105_Init.resx │ │ ├── 201705241329590_Added Category.Designer.cs │ │ ├── 201705241329590_Added Category.cs │ │ ├── 201705241329590_Added Category.resx │ │ └── Configuration.cs │ │ ├── Models │ │ ├── Category.cs │ │ ├── MyModel.cs │ │ └── Product.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Products │ │ │ ├── Create.cshtml │ │ │ ├── Detail.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config │ └── TodoApp │ ├── TodoApp.sln │ └── TodoApp │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs │ ├── ApplicationInsights.config │ ├── Content │ └── Site.css │ ├── Controllers │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Migrations │ ├── 201706191041416_init.Designer.cs │ ├── 201706191041416_init.cs │ ├── 201706191041416_init.resx │ ├── 201706211226253_removed-description.Designer.cs │ ├── 201706211226253_removed-description.cs │ ├── 201706211226253_removed-description.resx │ └── Configuration.cs │ ├── Models │ ├── MyContext.cs │ ├── Task.cs │ └── User.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── TodoApp20170621041438 - Web Deploy.pubxml │ ├── Scripts │ └── modernizr-2.8.3.js │ ├── TodoApp.csproj │ ├── ViewModels │ ├── LoginViewModel.cs │ └── RegisterViewModel.cs │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ ├── Login.cshtml │ │ └── Register.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Anonymous.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ └── packages.config ├── Project Skroutz ├── Skroutz.md └── Skroutz │ ├── Skroutz.sln │ └── Skroutz │ ├── App_Start │ └── RouteConfig.cs │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ ├── AttributeKeysController.cs │ ├── AttributeValuesController.cs │ ├── CategoriesController.cs │ ├── HomeController.cs │ ├── InventoriesController.cs │ ├── ProductsController.cs │ └── StoresController.cs │ ├── DAL │ └── SkroutzContext.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Migrations │ ├── 201611221633191_init.Designer.cs │ ├── 201611221633191_init.cs │ ├── 201611221633191_init.resx │ ├── 201611251245086_update.Designer.cs │ ├── 201611251245086_update.cs │ ├── 201611251245086_update.resx │ ├── 201611281200226_update1.Designer.cs │ ├── 201611281200226_update1.cs │ ├── 201611281200226_update1.resx │ ├── 201611281235048_update2.Designer.cs │ ├── 201611281235048_update2.cs │ ├── 201611281235048_update2.resx │ ├── 201611281542536_display.Designer.cs │ ├── 201611281542536_display.cs │ ├── 201611281542536_display.resx │ └── Configuration.cs │ ├── Models │ ├── AttributeKey.cs │ ├── AttributeValue.cs │ ├── Category.cs │ ├── Inventory.cs │ ├── Product.cs │ └── Store.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ └── modernizr-2.6.2.js │ ├── Skroutz.csproj │ ├── Views │ ├── AttributeKeys │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── AttributeValues │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Categories │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Inventories │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Products │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── Stores │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── _ViewStart.cshtml │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── packages.config ├── README.md ├── SQL-Entity ├── Exercises.md └── Solutions │ ├── ExerciseAdvancedQueries.sql │ ├── ExerciseHaving.sql │ ├── ExerciseInsertUpdateDelete.sql │ ├── ExerciseJoins.sql │ ├── ExerciseLibrary.sql │ └── ExerciseSimpleQueries.sql ├── __Demos ├── CSharp Demos │ ├── Demos │ │ ├── Demo1 │ │ │ ├── App.config │ │ │ ├── Demo1.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo10 │ │ │ ├── App.config │ │ │ ├── Demo10.csproj │ │ │ ├── Dice.cs │ │ │ ├── MemoryLeak.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo11 │ │ │ ├── App.config │ │ │ ├── Class.cs │ │ │ ├── Demo11.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo2 │ │ │ ├── App.config │ │ │ ├── Demo2.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo3 │ │ │ ├── App.config │ │ │ ├── Demo3.csproj │ │ │ ├── Dice.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo4 │ │ │ ├── App.config │ │ │ ├── Demo4.csproj │ │ │ ├── Dice.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo5 │ │ │ ├── App.config │ │ │ ├── Demo5.csproj │ │ │ ├── Dice.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo6 │ │ │ ├── App.config │ │ │ ├── Demo6.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo7 │ │ │ ├── App.config │ │ │ ├── Demo7.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo8 │ │ │ ├── App.config │ │ │ ├── Demo8.csproj │ │ │ ├── Dice.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demo9 │ │ │ ├── App.config │ │ │ ├── Commander.cs │ │ │ ├── Demo9.csproj │ │ │ ├── Dice.cs │ │ │ ├── IDice.cs │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Demos.sln │ │ ├── Demos │ │ │ ├── App.config │ │ │ ├── Demos.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── SolDemo3_1 │ │ │ ├── App.config │ │ │ ├── Dice.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── SolDemo3_1.csproj │ │ ├── SolDemo3_2 │ │ │ ├── App.config │ │ │ ├── Dice.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── SolDemo3_2.csproj │ │ ├── SolDemo3_3 │ │ │ ├── App.config │ │ │ ├── Dice.cs │ │ │ ├── DoubleDice.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── SolDemo3_3.csproj │ │ └── SolDemo3_4 │ │ │ ├── App.config │ │ │ ├── FortuneTeller.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── SolDemo3_4.csproj │ └── Exercises.txt ├── DemoADONET │ ├── adonet.sln │ └── adonet │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── adonet.csproj └── RazorDemo │ ├── App_Code │ ├── Model.cs │ └── Model │ │ ├── Categories.cs │ │ ├── CustomerDemographics.cs │ │ ├── Customers.cs │ │ ├── Employees.cs │ │ ├── Order_Details.cs │ │ ├── Orders.cs │ │ ├── Products.cs │ │ ├── Region.cs │ │ ├── Shippers.cs │ │ ├── Suppliers.cs │ │ └── Territories.cs │ ├── Content1.cshtml │ ├── Content2.cshtml │ ├── Content3.cshtml │ ├── Employees.cshtml │ ├── Index.cshtml │ ├── IsPostForm.cshtml │ ├── Shared │ ├── _Database.cshtml │ ├── _Footer.cshtml │ ├── _Header.cshtml │ ├── _Header1.cshtml │ ├── _Layout1.cshtml │ ├── _Layout2.cshtml │ ├── _Layout3.cshtml │ └── _List.cshtml │ ├── Styles │ └── Site.css │ ├── Web.Debug.config │ ├── Web.config │ └── packages.config └── northwind.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharp/Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Exercises.md -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseCoffee/ExerciseCoffee.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseCoffee/ExerciseCoffee.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseCoffee/Exercise_02/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseCoffee/Exercise_02/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseCoffee/Exercise_02/ExerciseCoffee.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseCoffee/Exercise_02/ExerciseCoffee.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseCoffee/Exercise_02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseCoffee/Exercise_02/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseCoffee/Exercise_02/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseCoffee/Exercise_02/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseComplex/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseComplex/.gitattributes -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseComplex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseComplex/.gitignore -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseComplex/ExerciseComplex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseComplex/ExerciseComplex.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseComplex/Exercise_01/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseComplex/Exercise_01/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseComplex/Exercise_01/ExerciseComplex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseComplex/Exercise_01/ExerciseComplex.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseComplex/Exercise_01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseComplex/Exercise_01/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseComplex/Exercise_01/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseComplex/Exercise_01/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseFraction/ExerciseFraction.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseFraction/ExerciseFraction.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseFraction/ExerciseFraction/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseFraction/ExerciseFraction/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseFraction/ExerciseFraction/ExerciseFraction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseFraction/ExerciseFraction/ExerciseFraction.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseFraction/ExerciseFraction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseFraction/ExerciseFraction/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseFraction/ExerciseFraction/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseFraction/ExerciseFraction/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLINQ/ExerciseLINQ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLINQ/ExerciseLINQ.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/ExerciseLINQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/ExerciseLINQ.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLINQ/ExerciseLINQ/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Author.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Book.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/ExerciseLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/ExerciseLibrary.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Librarian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Librarian.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Library.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseLibrary/ExerciseLibrary/User.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Battery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Battery.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Call.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Call.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Device.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Mobile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Mobile.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Screen.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile/Mobile/Usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile/Mobile/Usage.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/Battery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/Battery.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/KnownDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/KnownDevices.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/Manufacturers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/Manufacturers.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/MobileDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/MobileDevice.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceInfo/Screen.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceUsageInfo/Call.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceUsageInfo/Call.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceUsageInfo/DeviceUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/DeviceUsageInfo/DeviceUsage.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/Mobile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/Mobile.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseMobile_SolutionByNikos/Mobile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/ExerciseSubsequence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/ExerciseSubsequence.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseSubsequence/ExerciseSubsequence/Utilities.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University/Course.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University/Exercise_University.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University/Exercise_University.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University/Student.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUniversity/Exercise_University/University.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUniversity/Exercise_University/University.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/ExerciseUtilities.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/ExerciseUtilities.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/Exercise_03/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/Exercise_03/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/Exercise_03/Complex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/Exercise_03/Complex.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/Exercise_03/ExerciseUtilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/Exercise_03/ExerciseUtilities.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/Exercise_03/Fraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/Exercise_03/Fraction.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/Exercise_03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/Exercise_03/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/Exercise_03/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/Exercise_03/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseUtilities/Exercise_03/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseUtilities/Exercise_03/Utilities.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseZoo/ExerciseZoo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseZoo/ExerciseZoo.sln -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseZoo/Exercise_05/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseZoo/Exercise_05/App.config -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseZoo/Exercise_05/ExerciseZoo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseZoo/Exercise_05/ExerciseZoo.csproj -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseZoo/Exercise_05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseZoo/Exercise_05/Program.cs -------------------------------------------------------------------------------- /CSharp/Solutions/ExerciseZoo/Exercise_05/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/CSharp/Solutions/ExerciseZoo/Exercise_05/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesignPatterns/Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Exercises.md -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1.sln -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/App.config -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/Course.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/Exercise1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/Exercise1.csproj -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/Instructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/Instructor.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/Organizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/Organizer.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/Program.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/StakeHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/StakeHolder.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/Student.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise1/Exercise1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise1/Exercise1/packages.config -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2.sln -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/App.config -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/Exercise2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/Exercise2.csproj -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/FileUtilitiy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/FileUtilitiy.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/MetricSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/MetricSet.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/Program.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/RegexAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/RegexAnalyzer.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/SourceCodeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/SourceCodeAnalyzer.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/SourceCodeAnalyzerFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/SourceCodeAnalyzerFacade.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/SourceCodeAnalyzerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/SourceCodeAnalyzerFactory.cs -------------------------------------------------------------------------------- /DesignPatterns/Solutions/Exercise2/Exercise2/StringAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/DesignPatterns/Solutions/Exercise2/Exercise2/StringAnalyzer.cs -------------------------------------------------------------------------------- /HTML-CSS-Razor/Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Exercises.md -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/PersonalWebsiteCSS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/PersonalWebsiteCSS.sln -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Blog.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Contact.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Home.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Web.Debug.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/Web.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/css/style.css -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/bali-indonesia-tours-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/bali-indonesia-tours-1.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/bali-indonesia-tours-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/bali-indonesia-tours-2.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/bali-indonesia-tours-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/bali-indonesia-tours-3.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/link-source-ordering-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/link-source-ordering-1.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/personal-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/img/personal-image.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteCSS/web/packages.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/PersonalWebsiteHTML.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/PersonalWebsiteHTML.sln -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Blog.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Contact.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Home.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Web.Debug.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/Web.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/bali-indonesia-tours-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/bali-indonesia-tours-1.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/bali-indonesia-tours-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/bali-indonesia-tours-2.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/bali-indonesia-tours-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/bali-indonesia-tours-3.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/link-source-ordering-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/link-source-ordering-1.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/personal-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/img/personal-image.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteHTML/web/packages.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/App_Code/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/App_Code/Blog.cs -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/App_Code/Categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/App_Code/Categories.cs -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/App_Code/Posts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/App_Code/Posts.cs -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Blog.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Blog.cshtml -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Blog.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Contact.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Empty.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | 3 | } -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Home.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Home.cshtml -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Home.html -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/SQL_INIT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/SQL_INIT.sql -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/_Footer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/_Footer.cshtml -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/_Header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/_Header.cshtml -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/css/style.css -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/bali-indonesia-tours-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/bali-indonesia-tours-1.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/bali-indonesia-tours-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/bali-indonesia-tours-2.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/bali-indonesia-tours-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/bali-indonesia-tours-3.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/link-source-ordering-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/link-source-ordering-1.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/personal-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Shared/img/personal-image.jpg -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Web.Debug.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/Web.config -------------------------------------------------------------------------------- /HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML-CSS-Razor/Solutions/PersonalWebsiteRazor/packages.config -------------------------------------------------------------------------------- /HTML5Boilerplate/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/css/bootstrap-theme.css -------------------------------------------------------------------------------- /HTML5Boilerplate/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /HTML5Boilerplate/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /HTML5Boilerplate/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/css/bootstrap.css -------------------------------------------------------------------------------- /HTML5Boilerplate/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/css/bootstrap.css.map -------------------------------------------------------------------------------- /HTML5Boilerplate/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/css/bootstrap.min.css -------------------------------------------------------------------------------- /HTML5Boilerplate/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/css/main.css -------------------------------------------------------------------------------- /HTML5Boilerplate/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /HTML5Boilerplate/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /HTML5Boilerplate/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /HTML5Boilerplate/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /HTML5Boilerplate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/index.html -------------------------------------------------------------------------------- /HTML5Boilerplate/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HTML5Boilerplate/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /HTML5Boilerplate/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /HTML5Boilerplate/js/vendor/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/js/vendor/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /HTML5Boilerplate/js/vendor/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/js/vendor/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /HTML5Boilerplate/js/vendor/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/HTML5Boilerplate/js/vendor/npm.js -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/css/bootstrap-theme.css -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/css/bootstrap.css -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/css/bootstrap.css.map -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/css/bootstrap.min.css -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/css/main.css -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/index.html -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/js/main.js -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/js/vendor/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/js/vendor/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/js/vendor/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/js/vendor/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /JavaScript/ClickEventDemo/js/vendor/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ClickEventDemo/js/vendor/npm.js -------------------------------------------------------------------------------- /JavaScript/ES6Demo/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/css/bootstrap-theme.css -------------------------------------------------------------------------------- /JavaScript/ES6Demo/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /JavaScript/ES6Demo/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /JavaScript/ES6Demo/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/css/bootstrap.css -------------------------------------------------------------------------------- /JavaScript/ES6Demo/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/css/bootstrap.css.map -------------------------------------------------------------------------------- /JavaScript/ES6Demo/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/css/bootstrap.min.css -------------------------------------------------------------------------------- /JavaScript/ES6Demo/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/css/main.css -------------------------------------------------------------------------------- /JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /JavaScript/ES6Demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/index.html -------------------------------------------------------------------------------- /JavaScript/ES6Demo/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/js/main.js -------------------------------------------------------------------------------- /JavaScript/ES6Demo/js/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/js/math.js -------------------------------------------------------------------------------- /JavaScript/ES6Demo/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /JavaScript/ES6Demo/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /JavaScript/ES6Demo/js/vendor/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/js/vendor/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /JavaScript/ES6Demo/js/vendor/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/js/vendor/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /JavaScript/ES6Demo/js/vendor/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ES6Demo/js/vendor/npm.js -------------------------------------------------------------------------------- /JavaScript/Exercises_01/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/Exercises_01/css/main.css -------------------------------------------------------------------------------- /JavaScript/Exercises_01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/Exercises_01/index.html -------------------------------------------------------------------------------- /JavaScript/Exercises_01/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/Exercises_01/js/main.js -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/css/bootstrap-theme.css -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/css/bootstrap.css -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/css/bootstrap.css.map -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/css/bootstrap.min.css -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/css/main.css -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/index.html -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/js/main.js -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/js/vendor/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/js/vendor/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/js/vendor/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/js/vendor/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /JavaScript/ProductCartDemo/js/vendor/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/JavaScript/ProductCartDemo/js/vendor/npm.js -------------------------------------------------------------------------------- /MVC/Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Exercises.md -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball.sln -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/ApplicationInsights.config -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Basketball.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Basketball.csproj -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Content/Site.css -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Content/bootstrap.css -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Content/bootstrap.min.css -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Global.asax -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Global.asax.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Migrations/201705251421390_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Migrations/201705251421390_init.Designer.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Migrations/201705251421390_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Migrations/201705251421390_init.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Migrations/201705251421390_init.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Migrations/201705251421390_init.resx -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Migrations/Configuration.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Models/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Models/BaseViewModel.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Models/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Models/IndexViewModel.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Models/JoinRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Models/JoinRequest.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Models/MyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Models/MyContext.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Models/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Models/Team.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Models/User.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Models/ViewRequestsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Models/ViewRequestsViewModel.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/bootstrap.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/respond.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Scripts/respond.min.js -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Home/CreateTeam.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Home/CreateTeam.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Home/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Home/Login.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Home/Signup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Home/Signup.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Home/ViewRequests.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Home/ViewRequests.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/Web.config -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Web.Debug.config -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Web.Release.config -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/Web.config -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/favicon.ico -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MVC/Solutions/Basketball/Basketball/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/Basketball/Basketball/packages.config -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1.sln -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/ApplicationInsights.config -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Content/Site.css -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Content/bootstrap.css -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Content/bootstrap.min.css -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Global.asax -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Global.asax.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/MVC_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/MVC_1.csproj -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Migrations/201705221343105_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Migrations/201705221343105_Init.Designer.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Migrations/201705221343105_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Migrations/201705221343105_Init.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Migrations/201705221343105_Init.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Migrations/201705221343105_Init.resx -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Migrations/201705241329590_Added Category.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Migrations/201705241329590_Added Category.Designer.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Migrations/201705241329590_Added Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Migrations/201705241329590_Added Category.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Migrations/201705241329590_Added Category.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Migrations/201705241329590_Added Category.resx -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Migrations/Configuration.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Models/Category.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Models/MyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Models/MyModel.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Models/Product.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/bootstrap.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/respond.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Scripts/respond.min.js -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Home/About.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Products/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Products/Create.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Products/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Products/Detail.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Products/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Products/Index.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/Web.config -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Web.Debug.config -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Web.Release.config -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/Web.config -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/favicon.ico -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MVC/Solutions/MVC_1/MVC_1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/MVC_1/MVC_1/packages.config -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp.sln -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/ApplicationInsights.config -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Content/Site.css -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Global.asax -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Global.asax.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Migrations/201706191041416_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Migrations/201706191041416_init.Designer.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Migrations/201706191041416_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Migrations/201706191041416_init.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Migrations/201706191041416_init.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Migrations/201706191041416_init.resx -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Migrations/201706211226253_removed-description.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Migrations/201706211226253_removed-description.Designer.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Migrations/201706211226253_removed-description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Migrations/201706211226253_removed-description.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Migrations/201706211226253_removed-description.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Migrations/201706211226253_removed-description.resx -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Migrations/Configuration.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Models/MyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Models/MyContext.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Models/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Models/Task.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Models/User.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Properties/PublishProfiles/TodoApp20170621041438 - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Properties/PublishProfiles/TodoApp20170621041438 - Web Deploy.pubxml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/TodoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/TodoApp.csproj -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/ViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/ViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/Home/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/Home/Login.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/Home/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/Home/Register.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/Shared/_Anonymous.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/Shared/_Anonymous.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/Web.config -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Web.Debug.config -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Web.Release.config -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/Web.config -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/favicon.ico -------------------------------------------------------------------------------- /MVC/Solutions/TodoApp/TodoApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/MVC/Solutions/TodoApp/TodoApp/packages.config -------------------------------------------------------------------------------- /Project Skroutz/Skroutz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz.md -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz.sln -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Content/Site.css -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Content/bootstrap.css -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Controllers/AttributeKeysController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Controllers/AttributeKeysController.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Controllers/AttributeValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Controllers/AttributeValuesController.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Controllers/InventoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Controllers/InventoriesController.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Controllers/StoresController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Controllers/StoresController.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/DAL/SkroutzContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/DAL/SkroutzContext.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Global.asax -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Global.asax.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611221633191_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611221633191_init.Designer.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611221633191_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611221633191_init.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611221633191_init.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611221633191_init.resx -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611251245086_update.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611251245086_update.Designer.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611251245086_update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611251245086_update.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611251245086_update.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611251245086_update.resx -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281200226_update1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281200226_update1.Designer.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281200226_update1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281200226_update1.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281200226_update1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281200226_update1.resx -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281235048_update2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281235048_update2.Designer.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281235048_update2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281235048_update2.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281235048_update2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281235048_update2.resx -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281542536_display.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281542536_display.Designer.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281542536_display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281542536_display.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/201611281542536_display.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/201611281542536_display.resx -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Migrations/Configuration.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Models/AttributeKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Models/AttributeKey.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Models/AttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Models/AttributeValue.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Models/Category.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Models/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Models/Inventory.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Models/Product.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Models/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Models/Store.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Skroutz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Skroutz.csproj -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Create.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Delete.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Details.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Edit.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeKeys/Index.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Create.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Delete.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Details.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Edit.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/AttributeValues/Index.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Categories/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Categories/Create.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Categories/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Categories/Delete.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Categories/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Categories/Details.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Categories/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Categories/Edit.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Categories/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Categories/Index.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Inventories/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Inventories/Create.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Inventories/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Inventories/Delete.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Inventories/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Inventories/Details.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Inventories/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Inventories/Edit.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Inventories/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Inventories/Index.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Products/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Products/Create.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Products/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Products/Delete.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Products/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Products/Details.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Products/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Products/Edit.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Products/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Products/Index.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Stores/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Stores/Create.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Stores/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Stores/Delete.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Stores/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Stores/Details.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Stores/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Stores/Edit.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/Stores/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/Stores/Index.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Views/web.config -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Web.Debug.config -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Web.Release.config -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/Web.config -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Project Skroutz/Skroutz/Skroutz/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/Project Skroutz/Skroutz/Skroutz/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/README.md -------------------------------------------------------------------------------- /SQL-Entity/Exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/SQL-Entity/Exercises.md -------------------------------------------------------------------------------- /SQL-Entity/Solutions/ExerciseAdvancedQueries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/SQL-Entity/Solutions/ExerciseAdvancedQueries.sql -------------------------------------------------------------------------------- /SQL-Entity/Solutions/ExerciseHaving.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/SQL-Entity/Solutions/ExerciseHaving.sql -------------------------------------------------------------------------------- /SQL-Entity/Solutions/ExerciseInsertUpdateDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/SQL-Entity/Solutions/ExerciseInsertUpdateDelete.sql -------------------------------------------------------------------------------- /SQL-Entity/Solutions/ExerciseJoins.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/SQL-Entity/Solutions/ExerciseJoins.sql -------------------------------------------------------------------------------- /SQL-Entity/Solutions/ExerciseLibrary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/SQL-Entity/Solutions/ExerciseLibrary.sql -------------------------------------------------------------------------------- /SQL-Entity/Solutions/ExerciseSimpleQueries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/SQL-Entity/Solutions/ExerciseSimpleQueries.sql -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo1/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo1/Demo1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo1/Demo1.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo1/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo10/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo10/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo10/Demo10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo10/Demo10.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo10/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo10/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo10/MemoryLeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo10/MemoryLeak.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo10/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo10/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo10/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo10/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo11/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo11/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo11/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo11/Class.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo11/Demo11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo11/Demo11.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo11/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo11/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo11/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo11/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo2/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo2/Demo2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo2/Demo2.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo2/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo3/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo3/Demo3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo3/Demo3.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo3/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo3/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo3/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo4/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo4/Demo4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo4/Demo4.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo4/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo4/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo4/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo5/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo5/Demo5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo5/Demo5.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo5/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo5/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo5/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo6/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo6/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo6/Demo6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo6/Demo6.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo6/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo7/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo7/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo7/Demo7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo7/Demo7.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo7/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo8/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo8/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo8/Demo8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo8/Demo8.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo8/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo8/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo8/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo9/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo9/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo9/Commander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo9/Commander.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo9/Demo9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo9/Demo9.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo9/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo9/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo9/IDice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo9/IDice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo9/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo9/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demo9/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demo9/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demos.sln -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demos/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demos/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demos/Demos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demos/Demos.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demos/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demos/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/Demos/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/Demos/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_1/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_1/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_1/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_1/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_1/SolDemo3_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_1/SolDemo3_1.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_2/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_2/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_2/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_2/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_2/SolDemo3_2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_2/SolDemo3_2.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_3/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_3/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_3/Dice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_3/DoubleDice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_3/DoubleDice.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_3/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_3/SolDemo3_3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_3/SolDemo3_3.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_4/App.config -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_4/FortuneTeller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_4/FortuneTeller.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_4/Program.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Demos/SolDemo3_4/SolDemo3_4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Demos/SolDemo3_4/SolDemo3_4.csproj -------------------------------------------------------------------------------- /__Demos/CSharp Demos/Exercises.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/CSharp Demos/Exercises.txt -------------------------------------------------------------------------------- /__Demos/DemoADONET/adonet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/DemoADONET/adonet.sln -------------------------------------------------------------------------------- /__Demos/DemoADONET/adonet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/DemoADONET/adonet/App.config -------------------------------------------------------------------------------- /__Demos/DemoADONET/adonet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/DemoADONET/adonet/Program.cs -------------------------------------------------------------------------------- /__Demos/DemoADONET/adonet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/DemoADONET/adonet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /__Demos/DemoADONET/adonet/adonet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/DemoADONET/adonet/adonet.csproj -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Categories.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/CustomerDemographics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/CustomerDemographics.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Customers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Customers.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Employees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Employees.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Order_Details.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Order_Details.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Orders.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Products.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Products.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Region.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Shippers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Shippers.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Suppliers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Suppliers.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/App_Code/Model/Territories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/App_Code/Model/Territories.cs -------------------------------------------------------------------------------- /__Demos/RazorDemo/Content1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Content1.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Content2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Content2.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Content3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Content3.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Employees.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Employees.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Index.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/IsPostForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/IsPostForm.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Shared/_Database.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Shared/_Database.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Shared/_Footer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Shared/_Footer.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Shared/_Header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedonman/afdemp-coding-bootcamp-csharp/HEAD/__Demos/RazorDemo/Shared/_Header.cshtml -------------------------------------------------------------------------------- /__Demos/RazorDemo/Shared/_Header1.cshtml: -------------------------------------------------------------------------------- 1 |