├── .gitignore ├── Common ├── Common.csproj ├── Common.v2.ncrunchproject ├── Domain.Model │ ├── Command.cs │ ├── Entity.cs │ ├── EventSourcedAggregateRoot.cs │ ├── EventStore.cs │ ├── FakeBus.cs │ ├── ICommandHandler.cs │ ├── ICommandSender.cs │ ├── IEventHandler.cs │ ├── IEventPublisher.cs │ ├── IEventStore.cs │ ├── IIdentity.cs │ ├── IRepository.cs │ ├── IRouteMessages.cs │ ├── IUnitOfWork.cs │ ├── Identity.cs │ ├── InMemoryQueue.cs │ ├── Message.cs │ └── ValueObject.cs ├── Events │ ├── Event.cs │ ├── EventSourcedRepository.cs │ └── EventStore.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── FirstPopCoffee.sln ├── FirstPopCoffee.v2.ncrunchsolution ├── LICENSE ├── RoastPlanning.Tests ├── Bus │ ├── Publishing_events │ │ ├── TestEvent.cs │ │ ├── TestEventHandler.cs │ │ └── When_publishing_an_event_to_the_fakebus_with_a_single_event_handler_registered.cs │ ├── Sending_commands │ │ ├── TestCommand.cs │ │ ├── TestCommandHandler.cs │ │ └── When_sending_a_command_to_the_bus.cs │ └── TestAggregateRoot.cs ├── CommandSpecification.cs ├── EventSpecification.cs ├── Properties │ └── AssemblyInfo.cs ├── RoastPlanning.Tests.csproj ├── RoastPlanning.Tests.v2.ncrunchproject ├── Scenarios │ ├── Adding_a_new_roast_schedule │ │ └── When_starting_a_new_roast_schedule.cs │ └── Choosing_roast_days_for_roast_schedule │ │ ├── When_choosing_roast_days_for_roast_schedule.cs │ │ └── When_choosing_roast_days_for_roast_schedule_using_event_store.cs ├── SpecificationNoMocks.cs └── packages.config ├── RoastPlanning ├── Application │ └── RoastScheduleCommandHandlers.cs ├── Domain.Model │ ├── ChooseRoastDaysForRoastScheduleCommand.cs │ ├── CreateNewRoastScheduleCommand.cs │ ├── RoastDays.cs │ ├── RoastSchedule.cs │ ├── RoastScheduleCreatedEvent.cs │ ├── RoastScheduleId.cs │ ├── RoastScheduleRoastDaysChosenEvent.cs │ └── RoastScheduleStartOfWeekService.cs ├── Properties │ └── AssemblyInfo.cs ├── RoastPlanning.csproj └── RoastPlanning.v2.ncrunchproject ├── WebUI.Tests ├── IoCTests.cs ├── Properties │ └── AssemblyInfo.cs ├── WebUI.Tests.csproj ├── WebUI.Tests.v2.ncrunchproject ├── app.config └── packages.config └── WebUI ├── App_Start ├── BundleConfig.cs ├── FilterConfig.cs ├── IdentityConfig.cs ├── NinjectWebCommon.cs ├── RouteConfig.cs └── Startup.Auth.cs ├── Content ├── Site.css ├── bootstrap-flatly.min.css ├── bootstrap.css └── bootstrap.min.css ├── DependencyResolution └── RoastPlanningNinjectModule.cs ├── Features ├── Account │ ├── AccountController.cs │ ├── ConfirmEmail.cshtml │ ├── ExternalLoginConfirmation.cshtml │ ├── ExternalLoginFailure.cshtml │ ├── ForgotPassword.cshtml │ ├── ForgotPasswordConfirmation.cshtml │ ├── Login.cshtml │ ├── ManageController.cs │ ├── Register.cshtml │ ├── ResetPassword.cshtml │ ├── ResetPasswordConfirmation.cshtml │ ├── SendCode.cshtml │ ├── VerifyCode.cshtml │ └── _ExternalLoginsListPartial.cshtml ├── Home │ ├── About.cshtml │ ├── Contact.cshtml │ ├── HomeController.cs │ └── Index.cshtml ├── Manage │ ├── AddPhoneNumber.cshtml │ ├── ChangePassword.cshtml │ ├── Index.cshtml │ ├── ManageLogins.cshtml │ ├── SetPassword.cshtml │ └── VerifyPhoneNumber.cshtml ├── RoastPlanning │ ├── Create.cshtml │ ├── Index.cshtml │ ├── RoastPlanningController.cs │ └── RoastSchedule.cshtml ├── Shared │ ├── Error.cshtml │ ├── Lockout.cshtml │ ├── _Layout.cshtml │ └── _LoginPartial.cshtml ├── Web.config └── _ViewStart.cshtml ├── Global.asax ├── Global.asax.cs ├── Infrastructure ├── FakeDbSet.cs └── FeatureViewLocationRazorViewEngine.cs ├── Models ├── AccountViewModels.cs ├── IdentityModels.cs ├── ManageViewModels.cs └── RoastScheduleViewModel.cs ├── Project_Readme.html ├── Properties └── AssemblyInfo.cs ├── ReadModel ├── RoastPlanningContext.cs ├── RoastPlanningReadModel.cs └── RoastPlanningReadModelProjections.cs ├── Scripts ├── _references.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-1.10.2.intellisense.js ├── jquery-1.10.2.js ├── jquery-1.10.2.min.js ├── jquery-1.10.2.min.map ├── jquery.validate-vsdoc.js ├── jquery.validate.js ├── jquery.validate.min.js ├── jquery.validate.unobtrusive.js ├── jquery.validate.unobtrusive.min.js ├── modernizr-2.6.2.js ├── respond.js └── respond.min.js ├── Startup.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebUI.csproj ├── WebUI.v2.ncrunchproject ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/Common.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Common.v2.ncrunchproject -------------------------------------------------------------------------------- /Common/Domain.Model/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/Command.cs -------------------------------------------------------------------------------- /Common/Domain.Model/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/Entity.cs -------------------------------------------------------------------------------- /Common/Domain.Model/EventSourcedAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/EventSourcedAggregateRoot.cs -------------------------------------------------------------------------------- /Common/Domain.Model/EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/EventStore.cs -------------------------------------------------------------------------------- /Common/Domain.Model/FakeBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/FakeBus.cs -------------------------------------------------------------------------------- /Common/Domain.Model/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/ICommandHandler.cs -------------------------------------------------------------------------------- /Common/Domain.Model/ICommandSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/ICommandSender.cs -------------------------------------------------------------------------------- /Common/Domain.Model/IEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/IEventHandler.cs -------------------------------------------------------------------------------- /Common/Domain.Model/IEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/IEventPublisher.cs -------------------------------------------------------------------------------- /Common/Domain.Model/IEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/IEventStore.cs -------------------------------------------------------------------------------- /Common/Domain.Model/IIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/IIdentity.cs -------------------------------------------------------------------------------- /Common/Domain.Model/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/IRepository.cs -------------------------------------------------------------------------------- /Common/Domain.Model/IRouteMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/IRouteMessages.cs -------------------------------------------------------------------------------- /Common/Domain.Model/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/IUnitOfWork.cs -------------------------------------------------------------------------------- /Common/Domain.Model/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/Identity.cs -------------------------------------------------------------------------------- /Common/Domain.Model/InMemoryQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/InMemoryQueue.cs -------------------------------------------------------------------------------- /Common/Domain.Model/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/Message.cs -------------------------------------------------------------------------------- /Common/Domain.Model/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Domain.Model/ValueObject.cs -------------------------------------------------------------------------------- /Common/Events/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Events/Event.cs -------------------------------------------------------------------------------- /Common/Events/EventSourcedRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Events/EventSourcedRepository.cs -------------------------------------------------------------------------------- /Common/Events/EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Events/EventStore.cs -------------------------------------------------------------------------------- /Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/Common/packages.config -------------------------------------------------------------------------------- /FirstPopCoffee.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/FirstPopCoffee.sln -------------------------------------------------------------------------------- /FirstPopCoffee.v2.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/FirstPopCoffee.v2.ncrunchsolution -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/LICENSE -------------------------------------------------------------------------------- /RoastPlanning.Tests/Bus/Publishing_events/TestEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Bus/Publishing_events/TestEvent.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Bus/Publishing_events/TestEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Bus/Publishing_events/TestEventHandler.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Bus/Publishing_events/When_publishing_an_event_to_the_fakebus_with_a_single_event_handler_registered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Bus/Publishing_events/When_publishing_an_event_to_the_fakebus_with_a_single_event_handler_registered.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Bus/Sending_commands/TestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Bus/Sending_commands/TestCommand.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Bus/Sending_commands/TestCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Bus/Sending_commands/TestCommandHandler.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Bus/Sending_commands/When_sending_a_command_to_the_bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Bus/Sending_commands/When_sending_a_command_to_the_bus.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Bus/TestAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Bus/TestAggregateRoot.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/CommandSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/CommandSpecification.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/EventSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/EventSpecification.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/RoastPlanning.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/RoastPlanning.Tests.csproj -------------------------------------------------------------------------------- /RoastPlanning.Tests/RoastPlanning.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/RoastPlanning.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /RoastPlanning.Tests/Scenarios/Adding_a_new_roast_schedule/When_starting_a_new_roast_schedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Scenarios/Adding_a_new_roast_schedule/When_starting_a_new_roast_schedule.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Scenarios/Choosing_roast_days_for_roast_schedule/When_choosing_roast_days_for_roast_schedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Scenarios/Choosing_roast_days_for_roast_schedule/When_choosing_roast_days_for_roast_schedule.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/Scenarios/Choosing_roast_days_for_roast_schedule/When_choosing_roast_days_for_roast_schedule_using_event_store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/Scenarios/Choosing_roast_days_for_roast_schedule/When_choosing_roast_days_for_roast_schedule_using_event_store.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/SpecificationNoMocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/SpecificationNoMocks.cs -------------------------------------------------------------------------------- /RoastPlanning.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning.Tests/packages.config -------------------------------------------------------------------------------- /RoastPlanning/Application/RoastScheduleCommandHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Application/RoastScheduleCommandHandlers.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/ChooseRoastDaysForRoastScheduleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/ChooseRoastDaysForRoastScheduleCommand.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/CreateNewRoastScheduleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/CreateNewRoastScheduleCommand.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/RoastDays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/RoastDays.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/RoastSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/RoastSchedule.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/RoastScheduleCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/RoastScheduleCreatedEvent.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/RoastScheduleId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/RoastScheduleId.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/RoastScheduleRoastDaysChosenEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/RoastScheduleRoastDaysChosenEvent.cs -------------------------------------------------------------------------------- /RoastPlanning/Domain.Model/RoastScheduleStartOfWeekService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Domain.Model/RoastScheduleStartOfWeekService.cs -------------------------------------------------------------------------------- /RoastPlanning/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RoastPlanning/RoastPlanning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/RoastPlanning.csproj -------------------------------------------------------------------------------- /RoastPlanning/RoastPlanning.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/RoastPlanning/RoastPlanning.v2.ncrunchproject -------------------------------------------------------------------------------- /WebUI.Tests/IoCTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI.Tests/IoCTests.cs -------------------------------------------------------------------------------- /WebUI.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebUI.Tests/WebUI.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI.Tests/WebUI.Tests.csproj -------------------------------------------------------------------------------- /WebUI.Tests/WebUI.Tests.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI.Tests/WebUI.Tests.v2.ncrunchproject -------------------------------------------------------------------------------- /WebUI.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI.Tests/app.config -------------------------------------------------------------------------------- /WebUI.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI.Tests/packages.config -------------------------------------------------------------------------------- /WebUI/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WebUI/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /WebUI/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /WebUI/App_Start/NinjectWebCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/App_Start/NinjectWebCommon.cs -------------------------------------------------------------------------------- /WebUI/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WebUI/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /WebUI/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Content/Site.css -------------------------------------------------------------------------------- /WebUI/Content/bootstrap-flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Content/bootstrap-flatly.min.css -------------------------------------------------------------------------------- /WebUI/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Content/bootstrap.css -------------------------------------------------------------------------------- /WebUI/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WebUI/DependencyResolution/RoastPlanningNinjectModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/DependencyResolution/RoastPlanningNinjectModule.cs -------------------------------------------------------------------------------- /WebUI/Features/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/AccountController.cs -------------------------------------------------------------------------------- /WebUI/Features/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/Login.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ManageController.cs -------------------------------------------------------------------------------- /WebUI/Features/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/Register.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/SendCode.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Account/_ExternalLoginsListPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Account/_ExternalLoginsListPartial.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Home/About.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Home/Contact.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Home/HomeController.cs -------------------------------------------------------------------------------- /WebUI/Features/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Home/Index.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Manage/Index.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /WebUI/Features/RoastPlanning/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/RoastPlanning/Create.cshtml -------------------------------------------------------------------------------- /WebUI/Features/RoastPlanning/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/RoastPlanning/Index.cshtml -------------------------------------------------------------------------------- /WebUI/Features/RoastPlanning/RoastPlanningController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/RoastPlanning/RoastPlanningController.cs -------------------------------------------------------------------------------- /WebUI/Features/RoastPlanning/RoastSchedule.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/RoastPlanning/RoastSchedule.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Shared/Error.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /WebUI/Features/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/Web.config -------------------------------------------------------------------------------- /WebUI/Features/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Features/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebUI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Global.asax -------------------------------------------------------------------------------- /WebUI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Global.asax.cs -------------------------------------------------------------------------------- /WebUI/Infrastructure/FakeDbSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Infrastructure/FakeDbSet.cs -------------------------------------------------------------------------------- /WebUI/Infrastructure/FeatureViewLocationRazorViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Infrastructure/FeatureViewLocationRazorViewEngine.cs -------------------------------------------------------------------------------- /WebUI/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /WebUI/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Models/IdentityModels.cs -------------------------------------------------------------------------------- /WebUI/Models/ManageViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Models/ManageViewModels.cs -------------------------------------------------------------------------------- /WebUI/Models/RoastScheduleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Models/RoastScheduleViewModel.cs -------------------------------------------------------------------------------- /WebUI/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Project_Readme.html -------------------------------------------------------------------------------- /WebUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebUI/ReadModel/RoastPlanningContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/ReadModel/RoastPlanningContext.cs -------------------------------------------------------------------------------- /WebUI/ReadModel/RoastPlanningReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/ReadModel/RoastPlanningReadModel.cs -------------------------------------------------------------------------------- /WebUI/ReadModel/RoastPlanningReadModelProjections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/ReadModel/RoastPlanningReadModelProjections.cs -------------------------------------------------------------------------------- /WebUI/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/_references.js -------------------------------------------------------------------------------- /WebUI/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WebUI/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WebUI/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /WebUI/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /WebUI/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WebUI/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/respond.js -------------------------------------------------------------------------------- /WebUI/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Scripts/respond.min.js -------------------------------------------------------------------------------- /WebUI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Startup.cs -------------------------------------------------------------------------------- /WebUI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Web.Debug.config -------------------------------------------------------------------------------- /WebUI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Web.Release.config -------------------------------------------------------------------------------- /WebUI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/Web.config -------------------------------------------------------------------------------- /WebUI/WebUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/WebUI.csproj -------------------------------------------------------------------------------- /WebUI/WebUI.v2.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/WebUI.v2.ncrunchproject -------------------------------------------------------------------------------- /WebUI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/favicon.ico -------------------------------------------------------------------------------- /WebUI/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebUI/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WebUI/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebUI/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heynickc/firstpopcoffee/HEAD/WebUI/packages.config --------------------------------------------------------------------------------