├── .gitignore ├── InterpolSystem.Api ├── Controllers │ ├── ArticlesController.cs │ ├── BaseController.cs │ ├── MissingPeopleController.cs │ └── WantedPeopleController.cs ├── Infrastructure │ └── Filters │ │ └── ValidateUrlIdAttribute.cs ├── InterpolSystem.Api.csproj ├── Program.cs ├── Startup.cs ├── WebConstants.cs ├── appsettings.Development.json └── appsettings.json ├── InterpolSystem.Common ├── InterpolSystem.Common.csproj └── Mapping │ ├── AutoMapperProfile.cs │ ├── IHaveCustomMapping.cs │ └── IMapFrom.cs ├── InterpolSystem.Data ├── DataConstants.cs ├── EntitiesConfigurations │ ├── ArticleConfiguration.cs │ ├── ChargesConfiguration.cs │ ├── ChargesCountriesConfiguration.cs │ ├── CountriesNationalitiesMissingConfiguration.cs │ ├── CountriesNationalitiesWantedConfiguration.cs │ ├── CountryConfiguration.cs │ ├── IdentityParticularsMissingConfiguration.cs │ ├── IdentityParticularsWantedConfiguration.cs │ ├── LanguageConfiguration.cs │ ├── LanguagesMissingConfiguration.cs │ ├── LanguagesWantedConfiguration.cs │ └── SubmitFormConfiguration.cs ├── IData.cs ├── Infrastructure │ └── Extensions │ │ └── ModelBuilderExtensions.cs ├── InterpolDbContext.cs ├── InterpolSystem.Data.csproj ├── Migrations │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ ├── 00000000000000_CreateIdentitySchema.cs │ ├── 20180329123012_UsersTableAddFirstLastNameAndBirthdate.Designer.cs │ ├── 20180329123012_UsersTableAddFirstLastNameAndBirthdate.cs │ ├── 20180407135930_AddAllNeededTablesForBountyAdministratorPart.Designer.cs │ ├── 20180407135930_AddAllNeededTablesForBountyAdministratorPart.cs │ ├── 20180419070822_AddArticles.Designer.cs │ ├── 20180419070822_AddArticles.cs │ ├── 20180423094435_SubmitFormForWantedMissingPeople.Designer.cs │ ├── 20180423094435_SubmitFormForWantedMissingPeople.cs │ ├── 20180425130014_DateAndFormOptionsAddedToSubmitForm.Designer.cs │ ├── 20180425130014_DateAndFormOptionsAddedToSubmitForm.cs │ ├── 20180426090228_LoggerForStaff.Designer.cs │ ├── 20180426090228_LoggerForStaff.cs │ ├── 20180503195116_BountyHunterIdToSubmitFormToBeChanged.Designer.cs │ ├── 20180503195116_BountyHunterIdToSubmitFormToBeChanged.cs │ ├── 20180506144049_RewardToWanted.Designer.cs │ ├── 20180506144049_RewardToWanted.cs │ ├── 20180518215721_CaughtFieldToWantedPerson.Designer.cs │ ├── 20180518215721_CaughtFieldToWantedPerson.cs │ └── InterpolDbContextModelSnapshot.cs └── Models │ ├── Article.cs │ ├── Charges.cs │ ├── ChargesCountries.cs │ ├── Countinent.cs │ ├── CountriesNationalitiesMissing.cs │ ├── CountriesNationalitiesWanted.cs │ ├── Country.cs │ ├── Enums │ ├── Color.cs │ ├── FormOptions.cs │ └── Gender.cs │ ├── IdentityParticularsMissing.cs │ ├── IdentityParticularsWanted.cs │ ├── Language.cs │ ├── LanguagesMissing.cs │ ├── LanguagesWanted.cs │ ├── LogEmployee.cs │ ├── PhysicalDescription.cs │ ├── SubmitForm.cs │ └── User.cs ├── InterpolSystem.Services ├── Admin │ ├── IAdminUserService.cs │ ├── ILoggerService.cs │ ├── Implementations │ │ ├── AdminUserService.cs │ │ └── LoggerService.cs │ └── Models │ │ ├── AdminUserListingServiceModel.cs │ │ └── LoggerListingServiceModel.cs ├── Blog │ ├── IArticleService.cs │ ├── Implementations │ │ └── ArticleService.cs │ └── Models │ │ ├── ArticlesDetailsServiceModel.cs │ │ └── ArticlesListingsServiceModel.cs ├── BountyAdmin │ ├── IBountyAdminService.cs │ ├── Implementations │ │ └── BountyAdminService.cs │ └── Models │ │ ├── ChargesListingServiceModel.cs │ │ ├── CountryListingServiceModel.cs │ │ ├── LanguageListingServiceModel.cs │ │ └── SubmitFormWantedServiceModel.cs ├── BountyHunter │ ├── IBountyHunterService.cs │ ├── Implementations │ │ └── BountyHunterService.cs │ └── Models │ │ └── HunterSubmittedFormsServiceModel.cs ├── Html │ ├── IHtmlService.cs │ └── Implementations │ │ └── HtmlService.cs ├── IMissingPeopleService.cs ├── IPdfGenerator.cs ├── IService.cs ├── IWantedPeopleService.cs ├── Implementations │ ├── MissingPeopleService.cs │ ├── PdfGenerator.cs │ └── WantedPeopleService.cs ├── InterpolSystem.Services.csproj ├── Models │ ├── MissingPeople │ │ ├── MissingPeopleDetailsServiceModel.cs │ │ └── MissingPeopleListingServiceModel.cs │ └── WantedPeople │ │ ├── WantedPeopleDetailsServiceModel.cs │ │ └── WantedPeopleListingServiceModel.cs └── ServiceConstants.cs ├── InterpolSystem.Test ├── InterpolSystem.Test.csproj ├── Mocks │ ├── RoleManagerMock.cs │ ├── TestServerFixture.cs │ └── UserManagerMock.cs ├── Services │ ├── Blog │ │ └── ArticleServiceTest.cs │ ├── MissingPeopleServiceTest.cs │ └── WantedPeopleServiceTest.cs ├── Tests.cs └── Web │ ├── Areas │ ├── Admin │ │ └── Controllers │ │ │ ├── LoggerControllerTest.cs │ │ │ └── UsersControllerTest.cs │ └── Blog │ │ └── Controllers │ │ └── ArticlesControllerTest.cs │ └── Controllers │ └── MissingPeopleControllerIntegrationTests.cs ├── InterpolSystem.Web ├── .bowerrc ├── Areas │ ├── Admin │ │ ├── Controllers │ │ │ ├── BaseAdminController.cs │ │ │ ├── LoggerController.cs │ │ │ └── UsersController.cs │ │ ├── Models │ │ │ ├── Logger │ │ │ │ └── LoggerPagingViewModel.cs │ │ │ └── Users │ │ │ │ ├── AddRemoveUserToRoleViewModel.cs │ │ │ │ ├── CreateUserFormViewModel.cs │ │ │ │ ├── UserListingsViewModel.cs │ │ │ │ └── UserRolesViewModel.cs │ │ └── Views │ │ │ ├── Logger │ │ │ └── All.cshtml │ │ │ ├── Users │ │ │ ├── Create.cshtml │ │ │ └── Index.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ ├── Blog │ │ ├── Controllers │ │ │ └── ArticlesController.cs │ │ ├── Models │ │ │ └── Articles │ │ │ │ └── PublishArticleFormViewModel.cs │ │ └── Views │ │ │ ├── Articles │ │ │ ├── Create.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Index.cshtml │ │ │ └── _AllArticlesPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ ├── BountyAdmin │ │ ├── Controllers │ │ │ ├── BaseBountyAdminController.cs │ │ │ ├── MissingPeopleController.cs │ │ │ └── WantedPeopleController.cs │ │ ├── Models │ │ │ ├── LanguageAndCountryListingsViewModel.cs │ │ │ ├── MissingPeople │ │ │ │ └── MissingPeopleFormViewModel.cs │ │ │ └── WantedPeople │ │ │ │ ├── ChargeViewModel.cs │ │ │ │ ├── WantedFilteredFormViewModel.cs │ │ │ │ └── WantedPeopleFormViewModel.cs │ │ └── Views │ │ │ ├── MissingPeople │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── _MissingPeopleForm.cshtml │ │ │ ├── WantedPeople │ │ │ ├── AddCharge.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── ListAllForms.cshtml │ │ │ └── _WantedPeopleForm.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ └── BountyHunter │ │ ├── Controllers │ │ └── BountyHunterController.cs │ │ └── Views │ │ ├── BountyHunter │ │ └── GetSubmittedForms.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Controllers │ ├── AccountController.cs │ ├── BasePeopleController.cs │ ├── HomeController.cs │ ├── ManageController.cs │ ├── MissingPeopleController.cs │ └── WantedPeopleController.cs ├── Infrastructure │ ├── Extensions │ │ ├── ApplicationBuilderExtensions.cs │ │ ├── ControllerExtensions.cs │ │ ├── ServiceCollectionExtensions.cs │ │ ├── StringExtensions.cs │ │ ├── TempDataDictionaryExtensions.cs │ │ └── UrlHelperExtensions.cs │ └── Filters │ │ ├── LogAttribute.cs │ │ └── SubmitFormAttribute.cs ├── InterpolSystem.Web.csproj ├── Models │ ├── Account │ │ ├── ExternalLoginViewModel.cs │ │ ├── ForgotPasswordViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LoginWith2faViewModel.cs │ │ ├── LoginWithRecoveryCodeViewModel.cs │ │ ├── RegisterViewModel.cs │ │ └── ResetPasswordViewModel.cs │ ├── ErrorViewModel.cs │ ├── Manage │ │ ├── ChangePasswordViewModel.cs │ │ ├── EnableAuthenticatorViewModel.cs │ │ ├── ExternalLoginsViewModel.cs │ │ ├── IndexViewModel.cs │ │ ├── RemoveLoginViewModel.cs │ │ ├── SetPasswordViewModel.cs │ │ ├── ShowRecoveryCodesViewModel.cs │ │ └── TwoFactorAuthenticationViewModel.cs │ ├── MissingPeople │ │ └── MissingPeoplePageListingModel.cs │ ├── Shared │ │ ├── SearchFormViewModel.cs │ │ └── SubmitFormViewModel.cs │ └── WantedPeople │ │ └── WantedPeoplePageListingModel.cs ├── Program.cs ├── Startup.cs ├── Views │ ├── Account │ │ ├── AccessDenied.cshtml │ │ ├── ConfirmEmail.cshtml │ │ ├── ExternalLogin.cshtml │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── Lockout.cshtml │ │ ├── Login.cshtml │ │ ├── LoginWith2fa.cshtml │ │ ├── LoginWithRecoveryCode.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── ResetPasswordConfirmation.cshtml │ │ └── SignedOut.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Manage │ │ ├── ChangePassword.cshtml │ │ ├── Disable2fa.cshtml │ │ ├── EnableAuthenticator.cshtml │ │ ├── ExternalLogins.cshtml │ │ ├── GenerateRecoveryCodes.cshtml │ │ ├── Index.cshtml │ │ ├── ManageNavPages.cs │ │ ├── ResetAuthenticator.cshtml │ │ ├── SetPassword.cshtml │ │ ├── ShowRecoveryCodes.cshtml │ │ ├── TwoFactorAuthentication.cshtml │ │ ├── _Layout.cshtml │ │ ├── _ManageNav.cshtml │ │ ├── _StatusMessage.cshtml │ │ └── _ViewImports.cshtml │ ├── MissingPeople │ │ ├── Details.cshtml │ │ ├── Index.cshtml │ │ ├── Search.cshtml │ │ └── _MissingPeopleListingsPartial.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── WantedPeople │ │ ├── Details.cshtml │ │ ├── Index.cshtml │ │ ├── Search.cshtml │ │ ├── SubmitForm.cshtml │ │ └── _WantedPeopleListingsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── WebConstants.cs ├── appsettings.Development.json ├── appsettings.json ├── bower.json ├── bundleconfig.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── background-logo.jpg │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ ├── banner4.svg │ ├── caught-logo.jpg │ ├── cyber-crime.jpg │ ├── interpol-logo.png │ ├── shoot-logo.jpg │ └── skyscraper-attack.jpg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── 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 │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── InterpolSystem.sln ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /InterpolSystem.Api/Controllers/ArticlesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/Controllers/ArticlesController.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/Controllers/BaseController.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/Controllers/MissingPeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/Controllers/MissingPeopleController.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/Controllers/WantedPeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/Controllers/WantedPeopleController.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/Infrastructure/Filters/ValidateUrlIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/Infrastructure/Filters/ValidateUrlIdAttribute.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/InterpolSystem.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/InterpolSystem.Api.csproj -------------------------------------------------------------------------------- /InterpolSystem.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/Program.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/Startup.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/WebConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/WebConstants.cs -------------------------------------------------------------------------------- /InterpolSystem.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/appsettings.Development.json -------------------------------------------------------------------------------- /InterpolSystem.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Api/appsettings.json -------------------------------------------------------------------------------- /InterpolSystem.Common/InterpolSystem.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Common/InterpolSystem.Common.csproj -------------------------------------------------------------------------------- /InterpolSystem.Common/Mapping/AutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Common/Mapping/AutoMapperProfile.cs -------------------------------------------------------------------------------- /InterpolSystem.Common/Mapping/IHaveCustomMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Common/Mapping/IHaveCustomMapping.cs -------------------------------------------------------------------------------- /InterpolSystem.Common/Mapping/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Common/Mapping/IMapFrom.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/DataConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/DataConstants.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/ArticleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/ArticleConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/ChargesConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/ChargesConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/ChargesCountriesConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/ChargesCountriesConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/CountriesNationalitiesMissingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/CountriesNationalitiesMissingConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/CountriesNationalitiesWantedConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/CountriesNationalitiesWantedConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/CountryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/CountryConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/IdentityParticularsMissingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/IdentityParticularsMissingConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/IdentityParticularsWantedConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/IdentityParticularsWantedConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/LanguageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/LanguageConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/LanguagesMissingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/LanguagesMissingConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/LanguagesWantedConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/LanguagesWantedConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/EntitiesConfigurations/SubmitFormConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/EntitiesConfigurations/SubmitFormConfiguration.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/IData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/IData.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Infrastructure/Extensions/ModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Infrastructure/Extensions/ModelBuilderExtensions.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/InterpolDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/InterpolDbContext.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/InterpolSystem.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/InterpolSystem.Data.csproj -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180329123012_UsersTableAddFirstLastNameAndBirthdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180329123012_UsersTableAddFirstLastNameAndBirthdate.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180329123012_UsersTableAddFirstLastNameAndBirthdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180329123012_UsersTableAddFirstLastNameAndBirthdate.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180407135930_AddAllNeededTablesForBountyAdministratorPart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180407135930_AddAllNeededTablesForBountyAdministratorPart.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180407135930_AddAllNeededTablesForBountyAdministratorPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180407135930_AddAllNeededTablesForBountyAdministratorPart.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180419070822_AddArticles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180419070822_AddArticles.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180419070822_AddArticles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180419070822_AddArticles.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180423094435_SubmitFormForWantedMissingPeople.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180423094435_SubmitFormForWantedMissingPeople.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180423094435_SubmitFormForWantedMissingPeople.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180423094435_SubmitFormForWantedMissingPeople.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180425130014_DateAndFormOptionsAddedToSubmitForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180425130014_DateAndFormOptionsAddedToSubmitForm.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180425130014_DateAndFormOptionsAddedToSubmitForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180425130014_DateAndFormOptionsAddedToSubmitForm.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180426090228_LoggerForStaff.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180426090228_LoggerForStaff.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180426090228_LoggerForStaff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180426090228_LoggerForStaff.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180503195116_BountyHunterIdToSubmitFormToBeChanged.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180503195116_BountyHunterIdToSubmitFormToBeChanged.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180503195116_BountyHunterIdToSubmitFormToBeChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180503195116_BountyHunterIdToSubmitFormToBeChanged.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180506144049_RewardToWanted.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180506144049_RewardToWanted.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180506144049_RewardToWanted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180506144049_RewardToWanted.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180518215721_CaughtFieldToWantedPerson.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180518215721_CaughtFieldToWantedPerson.Designer.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/20180518215721_CaughtFieldToWantedPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/20180518215721_CaughtFieldToWantedPerson.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Migrations/InterpolDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Migrations/InterpolDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Article.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Charges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Charges.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/ChargesCountries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/ChargesCountries.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Countinent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Countinent.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/CountriesNationalitiesMissing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/CountriesNationalitiesMissing.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/CountriesNationalitiesWanted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/CountriesNationalitiesWanted.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Country.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Enums/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Enums/Color.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Enums/FormOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Enums/FormOptions.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Enums/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Enums/Gender.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/IdentityParticularsMissing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/IdentityParticularsMissing.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/IdentityParticularsWanted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/IdentityParticularsWanted.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/Language.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/LanguagesMissing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/LanguagesMissing.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/LanguagesWanted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/LanguagesWanted.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/LogEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/LogEmployee.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/PhysicalDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/PhysicalDescription.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/SubmitForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/SubmitForm.cs -------------------------------------------------------------------------------- /InterpolSystem.Data/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Data/Models/User.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Admin/IAdminUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Admin/IAdminUserService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Admin/ILoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Admin/ILoggerService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Admin/Implementations/AdminUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Admin/Implementations/AdminUserService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Admin/Implementations/LoggerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Admin/Implementations/LoggerService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Admin/Models/AdminUserListingServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Admin/Models/AdminUserListingServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Admin/Models/LoggerListingServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Admin/Models/LoggerListingServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Blog/IArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Blog/IArticleService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Blog/Implementations/ArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Blog/Implementations/ArticleService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Blog/Models/ArticlesDetailsServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Blog/Models/ArticlesDetailsServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Blog/Models/ArticlesListingsServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Blog/Models/ArticlesListingsServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyAdmin/IBountyAdminService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyAdmin/IBountyAdminService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyAdmin/Implementations/BountyAdminService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyAdmin/Implementations/BountyAdminService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyAdmin/Models/ChargesListingServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyAdmin/Models/ChargesListingServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyAdmin/Models/CountryListingServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyAdmin/Models/CountryListingServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyAdmin/Models/LanguageListingServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyAdmin/Models/LanguageListingServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyAdmin/Models/SubmitFormWantedServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyAdmin/Models/SubmitFormWantedServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyHunter/IBountyHunterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyHunter/IBountyHunterService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyHunter/Implementations/BountyHunterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyHunter/Implementations/BountyHunterService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/BountyHunter/Models/HunterSubmittedFormsServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/BountyHunter/Models/HunterSubmittedFormsServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Html/IHtmlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Html/IHtmlService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Html/Implementations/HtmlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Html/Implementations/HtmlService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/IMissingPeopleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/IMissingPeopleService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/IPdfGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/IPdfGenerator.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/IService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/IWantedPeopleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/IWantedPeopleService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Implementations/MissingPeopleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Implementations/MissingPeopleService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Implementations/PdfGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Implementations/PdfGenerator.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Implementations/WantedPeopleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Implementations/WantedPeopleService.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/InterpolSystem.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/InterpolSystem.Services.csproj -------------------------------------------------------------------------------- /InterpolSystem.Services/Models/MissingPeople/MissingPeopleDetailsServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Models/MissingPeople/MissingPeopleDetailsServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Models/MissingPeople/MissingPeopleListingServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Models/MissingPeople/MissingPeopleListingServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Models/WantedPeople/WantedPeopleDetailsServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Models/WantedPeople/WantedPeopleDetailsServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/Models/WantedPeople/WantedPeopleListingServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/Models/WantedPeople/WantedPeopleListingServiceModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Services/ServiceConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Services/ServiceConstants.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/InterpolSystem.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/InterpolSystem.Test.csproj -------------------------------------------------------------------------------- /InterpolSystem.Test/Mocks/RoleManagerMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Mocks/RoleManagerMock.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Mocks/TestServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Mocks/TestServerFixture.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Mocks/UserManagerMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Mocks/UserManagerMock.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Services/Blog/ArticleServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Services/Blog/ArticleServiceTest.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Services/MissingPeopleServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Services/MissingPeopleServiceTest.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Services/WantedPeopleServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Services/WantedPeopleServiceTest.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Tests.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Web/Areas/Admin/Controllers/LoggerControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Web/Areas/Admin/Controllers/LoggerControllerTest.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Web/Areas/Admin/Controllers/UsersControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Web/Areas/Admin/Controllers/UsersControllerTest.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Web/Areas/Blog/Controllers/ArticlesControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Web/Areas/Blog/Controllers/ArticlesControllerTest.cs -------------------------------------------------------------------------------- /InterpolSystem.Test/Web/Controllers/MissingPeopleControllerIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Test/Web/Controllers/MissingPeopleControllerIntegrationTests.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Controllers/BaseAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Controllers/BaseAdminController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Controllers/LoggerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Controllers/LoggerController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Controllers/UsersController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Models/Logger/LoggerPagingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Models/Logger/LoggerPagingViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Models/Users/AddRemoveUserToRoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Models/Users/AddRemoveUserToRoleViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Models/Users/CreateUserFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Models/Users/CreateUserFormViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Models/Users/UserListingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Models/Users/UserListingsViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Models/Users/UserRolesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Models/Users/UserRolesViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Views/Logger/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Views/Logger/All.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Views/Users/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Views/Users/Create.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Views/Users/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Views/Users/Index.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Admin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Controllers/ArticlesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Controllers/ArticlesController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Models/Articles/PublishArticleFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Models/Articles/PublishArticleFormViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Views/Articles/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Views/Articles/Create.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Views/Articles/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Views/Articles/Details.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Views/Articles/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Views/Articles/Index.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Views/Articles/_AllArticlesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Views/Articles/_AllArticlesPartial.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/Blog/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/Blog/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Controllers/BaseBountyAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Controllers/BaseBountyAdminController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Controllers/MissingPeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Controllers/MissingPeopleController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Controllers/WantedPeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Controllers/WantedPeopleController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Models/LanguageAndCountryListingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Models/LanguageAndCountryListingsViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Models/MissingPeople/MissingPeopleFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Models/MissingPeople/MissingPeopleFormViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Models/WantedPeople/ChargeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Models/WantedPeople/ChargeViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Models/WantedPeople/WantedFilteredFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Models/WantedPeople/WantedFilteredFormViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Models/WantedPeople/WantedPeopleFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Models/WantedPeople/WantedPeopleFormViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/MissingPeople/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/MissingPeople/Create.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/MissingPeople/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/MissingPeople/Edit.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/MissingPeople/_MissingPeopleForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/MissingPeople/_MissingPeopleForm.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/AddCharge.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/AddCharge.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/Create.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/Edit.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/ListAllForms.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/ListAllForms.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/_WantedPeopleForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/WantedPeople/_WantedPeopleForm.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyAdmin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyAdmin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyHunter/Controllers/BountyHunterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyHunter/Controllers/BountyHunterController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyHunter/Views/BountyHunter/GetSubmittedForms.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyHunter/Views/BountyHunter/GetSubmittedForms.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyHunter/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyHunter/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Areas/BountyHunter/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Areas/BountyHunter/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Controllers/AccountController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Controllers/BasePeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Controllers/BasePeopleController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Controllers/ManageController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Controllers/MissingPeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Controllers/MissingPeopleController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Controllers/WantedPeopleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Controllers/WantedPeopleController.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Extensions/ControllerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Extensions/ControllerExtensions.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Extensions/TempDataDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Extensions/TempDataDictionaryExtensions.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Extensions/UrlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Extensions/UrlHelperExtensions.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Filters/LogAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Filters/LogAttribute.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Infrastructure/Filters/SubmitFormAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Infrastructure/Filters/SubmitFormAttribute.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/InterpolSystem.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/InterpolSystem.Web.csproj -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Account/ExternalLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Account/ExternalLoginViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Account/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Account/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Account/LoginWith2faViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Account/LoginWith2faViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Account/LoginWithRecoveryCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Account/LoginWithRecoveryCodeViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Account/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Account/RegisterViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Account/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Account/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/EnableAuthenticatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/EnableAuthenticatorViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/ExternalLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/ExternalLoginsViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/IndexViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/ShowRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/ShowRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Manage/TwoFactorAuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Manage/TwoFactorAuthenticationViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/MissingPeople/MissingPeoplePageListingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/MissingPeople/MissingPeoplePageListingModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Shared/SearchFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Shared/SearchFormViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/Shared/SubmitFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/Shared/SubmitFormViewModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Models/WantedPeople/WantedPeoplePageListingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Models/WantedPeople/WantedPeoplePageListingModel.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Program.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Startup.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Account/SignedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Account/SignedOut.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/ShowRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/ShowRecoveryCodes.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using InterpolSystem.Web.Views.Manage -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/MissingPeople/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/MissingPeople/Details.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/MissingPeople/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/MissingPeople/Index.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/MissingPeople/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/MissingPeople/Search.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/MissingPeople/_MissingPeopleListingsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/MissingPeople/_MissingPeopleListingsPartial.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/WantedPeople/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/WantedPeople/Details.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/WantedPeople/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/WantedPeople/Index.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/WantedPeople/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/WantedPeople/Search.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/WantedPeople/SubmitForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/WantedPeople/SubmitForm.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/WantedPeople/_WantedPeopleListingsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/WantedPeople/_WantedPeopleListingsPartial.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /InterpolSystem.Web/WebConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/WebConstants.cs -------------------------------------------------------------------------------- /InterpolSystem.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/appsettings.Development.json -------------------------------------------------------------------------------- /InterpolSystem.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/appsettings.json -------------------------------------------------------------------------------- /InterpolSystem.Web/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/bower.json -------------------------------------------------------------------------------- /InterpolSystem.Web/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/bundleconfig.json -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/background-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/background-logo.jpg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/caught-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/caught-logo.jpg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/cyber-crime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/cyber-crime.jpg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/interpol-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/interpol-logo.png -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/shoot-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/shoot-logo.jpg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/images/skyscraper-attack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/images/skyscraper-attack.jpg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /InterpolSystem.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /InterpolSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/InterpolSystem.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanMinch3v/InterpolSystem/HEAD/README.md --------------------------------------------------------------------------------