├── .gitignore ├── ConferencePlanner.sln ├── LICENSE ├── README.md ├── docs ├── 1. Create BackEnd API project.md ├── 2. Build out BackEnd and Refactor.md ├── 3. Add front-end, render agenda, set up front-end models.md ├── 4. Add auth features.md ├── 5. Add personal agenda.md ├── 6. Deployment.md ├── 7. Challenges.md ├── architecture-diagram.md ├── architecture-diagram.svg └── images │ ├── create-dto-project.png │ ├── new-frontend-project.png │ ├── new-project.png │ ├── new-razorpages-project.png │ ├── new-web-api-settings.png │ ├── scaffold-api-controller.png │ ├── swagger - full api.png │ ├── swagger-create-results.png │ ├── swagger-create-speaker.png │ └── swagger-speakers.png ├── global.json ├── notes └── topics.md ├── order.md ├── save-points ├── 1-Create-API-and-EF-Model │ └── ConferencePlanner │ │ ├── BackEnd │ │ ├── .bowerrc │ │ ├── BackEnd.csproj │ │ ├── Controllers │ │ │ ├── SpeakersController.cs │ │ │ └── ValuesController.cs │ │ ├── Migrations │ │ │ ├── 20170612002236_Initial.Designer.cs │ │ │ ├── 20170612002236_Initial.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Models │ │ │ ├── ApplicationDbContext.cs │ │ │ └── Speaker.cs │ │ ├── Program.cs │ │ ├── ScaffoldingReadMe.txt │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ └── ConferencePlanner.sln ├── 2a-Refactor-to-ConferenceDTO │ └── ConferencePlanner │ │ ├── BackEnd │ │ ├── .bowerrc │ │ ├── BackEnd.csproj │ │ ├── Controllers │ │ │ ├── SpeakersController.cs │ │ │ └── ValuesController.cs │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── Attendee.cs │ │ │ ├── Conference.cs │ │ │ ├── ConferenceAttendee.cs │ │ │ ├── Session.cs │ │ │ ├── SessionSpeaker.cs │ │ │ ├── SessionTag.cs │ │ │ ├── Speaker.cs │ │ │ ├── Tag.cs │ │ │ └── Track.cs │ │ ├── Migrations │ │ │ ├── 20170612002236_Initial.Designer.cs │ │ │ ├── 20170612002236_Initial.cs │ │ │ ├── 20170612040324_Refactor.Designer.cs │ │ │ ├── 20170612040324_Refactor.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Program.cs │ │ ├── ScaffoldingReadMe.txt │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── ConferenceDTO │ │ ├── Attendee.cs │ │ ├── Conference.cs │ │ ├── ConferenceDTO.csproj │ │ ├── Session.cs │ │ ├── Speaker.cs │ │ ├── Tag.cs │ │ └── Track.cs │ │ └── ConferencePlanner.sln ├── 2b-BackEnd-completed │ └── ConferencePlanner │ │ ├── BackEnd │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── BackEnd.csproj │ │ ├── Controllers │ │ │ ├── AttendeesController.cs │ │ │ ├── ConferencesController.cs │ │ │ ├── SearchController.cs │ │ │ ├── SessionsController.cs │ │ │ └── SpeakersController.cs │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── Attendee.cs │ │ │ ├── Conference.cs │ │ │ ├── ConferenceAttendee.cs │ │ │ ├── NDCSydneyData.cs │ │ │ ├── Session.cs │ │ │ ├── SessionSpeaker.cs │ │ │ ├── SessionTag.cs │ │ │ ├── Speaker.cs │ │ │ ├── Tag.cs │ │ │ └── Track.cs │ │ ├── Infrastructure │ │ │ └── EntityExtensions.cs │ │ ├── Migrations │ │ │ ├── 20170612084913_Initial.Designer.cs │ │ │ ├── 20170612084913_Initial.cs │ │ │ ├── 20170612112815_Refactor.Designer.cs │ │ │ ├── 20170612112815_Refactor.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── ConferenceDTO │ │ ├── Attendee.cs │ │ ├── AttendeeResponse.cs │ │ ├── Conference.cs │ │ ├── ConferenceDTO.csproj │ │ ├── ConferenceResponse.cs │ │ ├── SearchResult.cs │ │ ├── SearchTerm.cs │ │ ├── Session.cs │ │ ├── SessionResponse.cs │ │ ├── Speaker.cs │ │ ├── SpeakerResponse.cs │ │ ├── Tag.cs │ │ ├── TagResponse.cs │ │ ├── Track.cs │ │ └── TrackResponse.cs │ │ └── ConferencePlanner.sln ├── 3-Front-End-started │ └── ConferencePlanner │ │ ├── BackEnd │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── BackEnd.csproj │ │ ├── Controllers │ │ │ ├── AttendeesController.cs │ │ │ ├── ConferencesController.cs │ │ │ ├── SearchController.cs │ │ │ ├── SessionsController.cs │ │ │ └── SpeakersController.cs │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── Attendee.cs │ │ │ ├── Conference.cs │ │ │ ├── ConferenceAttendee.cs │ │ │ ├── NDCSydneyData.cs │ │ │ ├── Session.cs │ │ │ ├── SessionSpeaker.cs │ │ │ ├── SessionTag.cs │ │ │ ├── Speaker.cs │ │ │ ├── Tag.cs │ │ │ └── Track.cs │ │ ├── Infrastructure │ │ │ └── EntityExtensions.cs │ │ ├── Migrations │ │ │ ├── 20170612084913_Initial.Designer.cs │ │ │ ├── 20170612084913_Initial.cs │ │ │ ├── 20170612112815_Refactor.Designer.cs │ │ │ ├── 20170612112815_Refactor.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── ConferenceDTO │ │ ├── Attendee.cs │ │ ├── AttendeeResponse.cs │ │ ├── Conference.cs │ │ ├── ConferenceDTO.csproj │ │ ├── ConferenceResponse.cs │ │ ├── SearchResult.cs │ │ ├── SearchTerm.cs │ │ ├── Session.cs │ │ ├── SessionResponse.cs │ │ ├── Speaker.cs │ │ ├── SpeakerResponse.cs │ │ ├── Tag.cs │ │ ├── TagResponse.cs │ │ ├── Track.cs │ │ └── TrackResponse.cs │ │ ├── ConferencePlanner.sln │ │ └── FrontEnd │ │ ├── .bowerrc │ │ ├── FrontEnd.csproj │ │ ├── Infrastructure │ │ └── HttpClientExtensions.cs │ │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Search.cshtml │ │ ├── Search.cshtml.cs │ │ ├── Session.cshtml │ │ ├── Session.cshtml.cs │ │ ├── Speaker.cshtml │ │ ├── Speaker.cshtml.cs │ │ ├── Speakers.cshtml │ │ ├── Speakers.cshtml.cs │ │ ├── _Layout.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Services │ │ ├── ApiClient.cs │ │ └── IApiClient.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bower.json │ │ ├── bundleconfig.json │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ └── jquery.validate.unobtrusive.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ └── jquery.validate.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ └── jquery.min.map ├── 4-Authentication-and-Tag-Helpers │ └── ConferencePlanner │ │ ├── BackEnd │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── BackEnd.csproj │ │ ├── Controllers │ │ │ ├── AttendeesController.cs │ │ │ ├── ConferencesController.cs │ │ │ ├── SearchController.cs │ │ │ ├── SessionsController.cs │ │ │ └── SpeakersController.cs │ │ ├── Data │ │ │ ├── ApplicationDbContext.cs │ │ │ ├── Attendee.cs │ │ │ ├── Conference.cs │ │ │ ├── ConferenceAttendee.cs │ │ │ ├── NDCSydneyData.cs │ │ │ ├── Session.cs │ │ │ ├── SessionSpeaker.cs │ │ │ ├── SessionTag.cs │ │ │ ├── Speaker.cs │ │ │ ├── Tag.cs │ │ │ └── Track.cs │ │ ├── Infrastructure │ │ │ └── EntityExtensions.cs │ │ ├── Migrations │ │ │ ├── 20170612084913_Initial.Designer.cs │ │ │ ├── 20170612084913_Initial.cs │ │ │ ├── 20170612112815_Refactor.Designer.cs │ │ │ ├── 20170612112815_Refactor.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── ConferenceDTO │ │ ├── Attendee.cs │ │ ├── AttendeeResponse.cs │ │ ├── Conference.cs │ │ ├── ConferenceDTO.csproj │ │ ├── ConferenceResponse.cs │ │ ├── SearchResult.cs │ │ ├── SearchTerm.cs │ │ ├── Session.cs │ │ ├── SessionResponse.cs │ │ ├── Speaker.cs │ │ ├── SpeakerResponse.cs │ │ ├── Tag.cs │ │ ├── TagResponse.cs │ │ ├── Track.cs │ │ └── TrackResponse.cs │ │ ├── ConferencePlanner.sln │ │ └── FrontEnd │ │ ├── .bowerrc │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── FrontEnd.csproj │ │ ├── Infrastructure │ │ └── HttpClientExtensions.cs │ │ ├── Pages │ │ ├── Admin │ │ │ ├── EditSession.cshtml │ │ │ └── EditSession.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── Search.cshtml │ │ ├── Search.cshtml.cs │ │ ├── Session.cshtml │ │ ├── Session.cshtml.cs │ │ ├── Speaker.cshtml │ │ ├── Speaker.cshtml.cs │ │ ├── Speakers.cshtml │ │ ├── Speakers.cshtml.cs │ │ ├── _Layout.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Services │ │ ├── ApiClient.cs │ │ └── IApiClient.cs │ │ ├── Startup.cs │ │ ├── TagHelpers │ │ └── AuthzTagHelper.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bower.json │ │ ├── bundleconfig.json │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ └── jquery.validate.unobtrusive.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ └── jquery.validate.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ └── jquery.min.map └── 5-User-association-and-personal-agenda │ └── ConferencePlanner │ ├── BackEnd │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── BackEnd.csproj │ ├── Controllers │ │ ├── AttendeesController.cs │ │ ├── ConferencesController.cs │ │ ├── SearchController.cs │ │ ├── SessionsController.cs │ │ └── SpeakersController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ ├── Attendee.cs │ │ ├── Conference.cs │ │ ├── ConferenceAttendee.cs │ │ ├── NDCSydneyData.cs │ │ ├── Session.cs │ │ ├── SessionSpeaker.cs │ │ ├── SessionTag.cs │ │ ├── Speaker.cs │ │ ├── Tag.cs │ │ └── Track.cs │ ├── Infrastructure │ │ └── EntityExtensions.cs │ ├── Migrations │ │ ├── 20170612084913_Initial.Designer.cs │ │ ├── 20170612084913_Initial.cs │ │ ├── 20170612112815_Refactor.Designer.cs │ │ ├── 20170612112815_Refactor.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── ConferenceDTO │ ├── Attendee.cs │ ├── AttendeeResponse.cs │ ├── Conference.cs │ ├── ConferenceDTO.csproj │ ├── ConferenceResponse.cs │ ├── SearchResult.cs │ ├── SearchTerm.cs │ ├── Session.cs │ ├── SessionResponse.cs │ ├── Speaker.cs │ ├── SpeakerResponse.cs │ ├── Tag.cs │ ├── TagResponse.cs │ ├── Track.cs │ └── TrackResponse.cs │ ├── ConferencePlanner.sln │ └── FrontEnd │ ├── .bowerrc │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ └── AccountController.cs │ ├── Filters │ └── RequireLoginFilter.cs │ ├── FrontEnd.csproj │ ├── Infrastructure │ └── HttpClientExtensions.cs │ ├── Pages │ ├── Admin │ │ ├── EditSession.cshtml │ │ └── EditSession.cshtml.cs │ ├── Denied.cshtml │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Login.cshtml │ ├── Login.cshtml.cs │ ├── Models │ │ ├── Attendee.cs │ │ └── Session.cs │ ├── MyAgenda.cshtml │ ├── MyAgenda.cshtml.cs │ ├── Search.cshtml │ ├── Search.cshtml.cs │ ├── Session.cshtml │ ├── Session.cshtml.cs │ ├── Welcome.cshtml │ ├── Welcome.cshtml.cs │ ├── _Layout.cshtml │ ├── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Services │ ├── ApiClient.cs │ └── IApiClient.cs │ ├── Startup.cs │ ├── TagHelpers │ └── AuthzTagHelper.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ └── jquery.validate.unobtrusive.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ └── jquery.validate.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ └── jquery.min.map └── src ├── BackEnd ├── BackEnd.csproj ├── Controllers │ ├── AttendeesController.cs │ ├── ConferencesController.cs │ ├── SearchController.cs │ ├── SessionsController.cs │ └── SpeakersController.cs ├── Data │ ├── ApplicationDbContext.cs │ ├── Attendee.cs │ ├── Conference.cs │ ├── ConferenceAttendee.cs │ ├── NDCSydneyData.cs │ ├── Session.cs │ ├── SessionAttendee.cs │ ├── SessionSpeaker.cs │ ├── SessionTag.cs │ ├── Speaker.cs │ ├── Tag.cs │ └── Track.cs ├── Infrastructure │ └── EntityExtensions.cs ├── Migrations │ ├── 20170609012038_initial.Designer.cs │ ├── 20170609012038_initial.cs │ ├── 20170611145333_AttendeeUsernameUnique.Designer.cs │ ├── 20170611145333_AttendeeUsernameUnique.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── ConferenceDTO ├── Attendee.cs ├── AttendeeResponse.cs ├── Conference.cs ├── ConferenceDTO.csproj ├── ConferenceResponse.cs ├── SearchResult.cs ├── SearchTerm.cs ├── Session.cs ├── SessionResponse.cs ├── Speaker.cs ├── SpeakerResponse.cs ├── Tag.cs ├── TagResponse.cs ├── Track.cs └── TrackResponse.cs └── FrontEnd ├── .bowerrc ├── Controllers └── AccountController.cs ├── Filters └── RequireLoginFilter.cs ├── FrontEnd.csproj ├── Infrastructure └── HttpClientExtensions.cs ├── Pages ├── About.cshtml ├── About.cshtml.cs ├── Admin │ ├── EditSession.cshtml │ └── EditSession.cshtml.cs ├── Contact.cshtml ├── Contact.cshtml.cs ├── Denied.cshtml ├── Error.cshtml ├── Error.cshtml.cs ├── Index.cshtml ├── Index.cshtml.cs ├── Login.cshtml ├── Login.cshtml.cs ├── Models │ ├── Attendee.cs │ └── Session.cs ├── MyAgenda.cshtml ├── MyAgenda.cshtml.cs ├── Search.cshtml ├── Search.cshtml.cs ├── Session.cshtml ├── Session.cshtml.cs ├── Speaker.cshtml ├── Speaker.cshtml.cs ├── Speakers.cshtml ├── Speakers.cshtml.cs ├── Status.cshtml ├── Status.cshtml.cs ├── Welcome.cshtml ├── Welcome.cshtml.cs ├── _Layout.cshtml ├── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── Services ├── ApiClient.cs └── IApiClient.cs ├── Startup.cs ├── TagHelpers └── AuthzTagHelper.cs ├── appsettings.Development.json ├── appsettings.json ├── bower.json ├── bundleconfig.json └── wwwroot ├── css ├── site.css └── site.min.css ├── favicon.ico ├── images ├── banner1.svg ├── banner2.svg ├── banner3.svg └── banner4.svg ├── js ├── site.js └── site.min.js └── lib ├── bootstrap ├── .bower.json ├── LICENSE └── dist │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css.map │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── js │ ├── bootstrap.js │ └── npm.js ├── jquery-validation-unobtrusive ├── .bower.json └── jquery.validate.unobtrusive.js ├── jquery-validation ├── .bower.json ├── LICENSE.md └── dist │ ├── additional-methods.js │ └── jquery.validate.js └── jquery ├── .bower.json ├── LICENSE.txt └── dist ├── jquery.js └── jquery.min.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /ConferencePlanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/ConferencePlanner.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/README.md -------------------------------------------------------------------------------- /docs/1. Create BackEnd API project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/1. Create BackEnd API project.md -------------------------------------------------------------------------------- /docs/2. Build out BackEnd and Refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/2. Build out BackEnd and Refactor.md -------------------------------------------------------------------------------- /docs/3. Add front-end, render agenda, set up front-end models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/3. Add front-end, render agenda, set up front-end models.md -------------------------------------------------------------------------------- /docs/4. Add auth features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/4. Add auth features.md -------------------------------------------------------------------------------- /docs/5. Add personal agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/5. Add personal agenda.md -------------------------------------------------------------------------------- /docs/6. Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/6. Deployment.md -------------------------------------------------------------------------------- /docs/7. Challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/7. Challenges.md -------------------------------------------------------------------------------- /docs/architecture-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/architecture-diagram.md -------------------------------------------------------------------------------- /docs/architecture-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/architecture-diagram.svg -------------------------------------------------------------------------------- /docs/images/create-dto-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/create-dto-project.png -------------------------------------------------------------------------------- /docs/images/new-frontend-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/new-frontend-project.png -------------------------------------------------------------------------------- /docs/images/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/new-project.png -------------------------------------------------------------------------------- /docs/images/new-razorpages-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/new-razorpages-project.png -------------------------------------------------------------------------------- /docs/images/new-web-api-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/new-web-api-settings.png -------------------------------------------------------------------------------- /docs/images/scaffold-api-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/scaffold-api-controller.png -------------------------------------------------------------------------------- /docs/images/swagger - full api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/swagger - full api.png -------------------------------------------------------------------------------- /docs/images/swagger-create-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/swagger-create-results.png -------------------------------------------------------------------------------- /docs/images/swagger-create-speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/swagger-create-speaker.png -------------------------------------------------------------------------------- /docs/images/swagger-speakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/docs/images/swagger-speakers.png -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/global.json -------------------------------------------------------------------------------- /notes/topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/notes/topics.md -------------------------------------------------------------------------------- /order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/order.md -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/BackEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/BackEnd.csproj -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.Designer.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Models/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Models/ApplicationDbContext.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Models/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Models/Speaker.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Program.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/BackEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/1-Create-API-and-EF-Model/ConferencePlanner/ConferencePlanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/1-Create-API-and-EF-Model/ConferencePlanner/ConferencePlanner.sln -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/BackEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/BackEnd.csproj -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Attendee.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Conference.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Session.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/SessionTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/SessionTag.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Speaker.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Tag.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Data/Track.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.Designer.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612002236_Initial.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612040324_Refactor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612040324_Refactor.Designer.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612040324_Refactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/20170612040324_Refactor.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Program.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/BackEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Attendee.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Conference.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Session.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Speaker.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Tag.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferenceDTO/Track.cs -------------------------------------------------------------------------------- /save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferencePlanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2a-Refactor-to-ConferenceDTO/ConferencePlanner/ConferencePlanner.sln -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/.vscode/launch.json -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/.vscode/tasks.json -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/BackEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/BackEnd.csproj -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/SearchController.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/SessionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/SessionsController.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Attendee.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Conference.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Session.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/SessionTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/SessionTag.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Speaker.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Tag.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Data/Track.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Program.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/BackEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Attendee.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Conference.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SearchResult.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SearchTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SearchTerm.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Session.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SessionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SessionResponse.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Speaker.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Tag.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/TagResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/TagResponse.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/Track.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/TrackResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferenceDTO/TrackResponse.cs -------------------------------------------------------------------------------- /save-points/2b-BackEnd-completed/ConferencePlanner/ConferencePlanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/2b-BackEnd-completed/ConferencePlanner/ConferencePlanner.sln -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/.vscode/launch.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/.vscode/tasks.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/BackEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/BackEnd.csproj -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/SearchController.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/SessionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/SessionsController.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Attendee.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Conference.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Session.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/SessionTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/SessionTag.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Speaker.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Tag.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Data/Track.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Program.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/BackEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/BackEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Attendee.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Conference.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SearchResult.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SearchTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SearchTerm.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Session.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SessionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SessionResponse.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Speaker.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Tag.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/TagResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/TagResponse.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/Track.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/TrackResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferenceDTO/TrackResponse.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/ConferencePlanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/ConferencePlanner.sln -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/FrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/FrontEnd.csproj -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Infrastructure/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Infrastructure/HttpClientExtensions.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Error.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Index.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Search.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Search.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Search.cshtml.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Session.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Session.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Session.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Session.cshtml.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Program.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Services/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Services/ApiClient.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Services/IApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Services/IApiClient.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/bower.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/bundleconfig.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/css/site.css -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/favicon.ico -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/3-Front-End-started/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/.vscode/launch.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/.vscode/tasks.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/BackEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/BackEnd.csproj -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/SearchController.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/SessionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/SessionsController.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Attendee.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Conference.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Session.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/SessionTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/SessionTag.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Speaker.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Tag.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Data/Track.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Program.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/BackEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Attendee.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Conference.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SearchResult.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SearchTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SearchTerm.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Session.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SessionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SessionResponse.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Speaker.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Tag.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/TagResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/TagResponse.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/Track.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/TrackResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferenceDTO/TrackResponse.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferencePlanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/ConferencePlanner.sln -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Controllers/HomeController.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/FrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/FrontEnd.csproj -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Infrastructure/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Infrastructure/HttpClientExtensions.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Error.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Index.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Login.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Login.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Search.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Search.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Search.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Session.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Session.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Session.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Session.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speaker.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/Speakers.cshtml.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Program.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Services/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Services/ApiClient.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Services/IApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Services/IApiClient.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/TagHelpers/AuthzTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/TagHelpers/AuthzTagHelper.cs -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/bower.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/bundleconfig.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/css/site.css -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/favicon.ico -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/4-Authentication-and-Tag-Helpers/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/.vscode/launch.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/.vscode/tasks.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/BackEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/BackEnd.csproj -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/AttendeesController.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/ConferencesController.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/SearchController.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/SessionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/SessionsController.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Controllers/SpeakersController.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Attendee.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Conference.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/ConferenceAttendee.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/NDCSydneyData.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Session.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/SessionSpeaker.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/SessionTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/SessionTag.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Speaker.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Tag.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Data/Track.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Infrastructure/EntityExtensions.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.Designer.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612084913_Initial.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.Designer.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/20170612112815_Refactor.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Program.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/BackEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Attendee.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/AttendeeResponse.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Conference.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/ConferenceDTO.csproj -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/ConferenceResponse.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SearchResult.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SearchTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SearchTerm.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Session.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SessionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SessionResponse.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Speaker.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/SpeakerResponse.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Tag.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/TagResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/TagResponse.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/Track.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/TrackResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferenceDTO/TrackResponse.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferencePlanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/ConferencePlanner.sln -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/.vscode/launch.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/.vscode/tasks.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Controllers/AccountController.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Filters/RequireLoginFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Filters/RequireLoginFilter.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/FrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/FrontEnd.csproj -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Infrastructure/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Infrastructure/HttpClientExtensions.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Admin/EditSession.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Denied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Denied.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Error.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Index.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Login.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Login.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Models/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Models/Attendee.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Models/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Models/Session.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/MyAgenda.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/MyAgenda.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/MyAgenda.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/MyAgenda.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Search.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Search.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Search.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Session.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Session.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Session.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Session.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Welcome.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Welcome.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Welcome.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/Welcome.cshtml.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Program.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Services/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Services/ApiClient.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Services/IApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Services/IApiClient.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/Startup.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/TagHelpers/AuthzTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/TagHelpers/AuthzTagHelper.cs -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/appsettings.Development.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/appsettings.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/bower.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/bundleconfig.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/css/site.css -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/favicon.ico -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/save-points/5-User-association-and-personal-agenda/ConferencePlanner/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/BackEnd/BackEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/BackEnd.csproj -------------------------------------------------------------------------------- /src/BackEnd/Controllers/AttendeesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Controllers/AttendeesController.cs -------------------------------------------------------------------------------- /src/BackEnd/Controllers/ConferencesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Controllers/ConferencesController.cs -------------------------------------------------------------------------------- /src/BackEnd/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Controllers/SearchController.cs -------------------------------------------------------------------------------- /src/BackEnd/Controllers/SessionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Controllers/SessionsController.cs -------------------------------------------------------------------------------- /src/BackEnd/Controllers/SpeakersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Controllers/SpeakersController.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/Attendee.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/Conference.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/ConferenceAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/ConferenceAttendee.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/NDCSydneyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/NDCSydneyData.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/Session.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/SessionAttendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/SessionAttendee.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/SessionSpeaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/SessionSpeaker.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/SessionTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/SessionTag.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/Speaker.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/Tag.cs -------------------------------------------------------------------------------- /src/BackEnd/Data/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Data/Track.cs -------------------------------------------------------------------------------- /src/BackEnd/Infrastructure/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Infrastructure/EntityExtensions.cs -------------------------------------------------------------------------------- /src/BackEnd/Migrations/20170609012038_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Migrations/20170609012038_initial.Designer.cs -------------------------------------------------------------------------------- /src/BackEnd/Migrations/20170609012038_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Migrations/20170609012038_initial.cs -------------------------------------------------------------------------------- /src/BackEnd/Migrations/20170611145333_AttendeeUsernameUnique.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Migrations/20170611145333_AttendeeUsernameUnique.Designer.cs -------------------------------------------------------------------------------- /src/BackEnd/Migrations/20170611145333_AttendeeUsernameUnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Migrations/20170611145333_AttendeeUsernameUnique.cs -------------------------------------------------------------------------------- /src/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Program.cs -------------------------------------------------------------------------------- /src/BackEnd/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/BackEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/Startup.cs -------------------------------------------------------------------------------- /src/BackEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/appsettings.Development.json -------------------------------------------------------------------------------- /src/BackEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/BackEnd/appsettings.json -------------------------------------------------------------------------------- /src/ConferenceDTO/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/Attendee.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/AttendeeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/AttendeeResponse.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/Conference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/Conference.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/ConferenceDTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/ConferenceDTO.csproj -------------------------------------------------------------------------------- /src/ConferenceDTO/ConferenceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/ConferenceResponse.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/SearchResult.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/SearchTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/SearchTerm.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/Session.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/SessionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/SessionResponse.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/Speaker.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/SpeakerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/SpeakerResponse.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/Tag.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/TagResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/TagResponse.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/Track.cs -------------------------------------------------------------------------------- /src/ConferenceDTO/TrackResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/ConferenceDTO/TrackResponse.cs -------------------------------------------------------------------------------- /src/FrontEnd/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/FrontEnd/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/FrontEnd/Filters/RequireLoginFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Filters/RequireLoginFilter.cs -------------------------------------------------------------------------------- /src/FrontEnd/FrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/FrontEnd.csproj -------------------------------------------------------------------------------- /src/FrontEnd/Infrastructure/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Infrastructure/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/About.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Admin/EditSession.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Admin/EditSession.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Admin/EditSession.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Admin/EditSession.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Contact.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Denied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Denied.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Login.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Login.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Models/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Models/Attendee.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Models/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Models/Session.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/MyAgenda.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/MyAgenda.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/MyAgenda.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/MyAgenda.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Search.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Search.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Search.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Session.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Session.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Session.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Session.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Speaker.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Speaker.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Speaker.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Speaker.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Speakers.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Speakers.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Speakers.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Speakers.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Status.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Status.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Status.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Status.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Welcome.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Welcome.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/Welcome.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/Welcome.cshtml.cs -------------------------------------------------------------------------------- /src/FrontEnd/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/FrontEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Program.cs -------------------------------------------------------------------------------- /src/FrontEnd/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/FrontEnd/Services/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Services/ApiClient.cs -------------------------------------------------------------------------------- /src/FrontEnd/Services/IApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Services/IApiClient.cs -------------------------------------------------------------------------------- /src/FrontEnd/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/Startup.cs -------------------------------------------------------------------------------- /src/FrontEnd/TagHelpers/AuthzTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/TagHelpers/AuthzTagHelper.cs -------------------------------------------------------------------------------- /src/FrontEnd/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/appsettings.Development.json -------------------------------------------------------------------------------- /src/FrontEnd/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/appsettings.json -------------------------------------------------------------------------------- /src/FrontEnd/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/bower.json -------------------------------------------------------------------------------- /src/FrontEnd/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/bundleconfig.json -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jongalloway/aspnetcore-app-workshop/HEAD/src/FrontEnd/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------