├── .gitattributes ├── .gitignore ├── README.md └── src ├── motekarteknologi ├── Areas │ └── crm │ │ ├── Controllers │ │ ├── ActivityTypesController.cs │ │ ├── CustomerActivitiesController.cs │ │ ├── CustomerAdditionalContactsController.cs │ │ ├── CustomerNotesController.cs │ │ ├── CustomerTypesController.cs │ │ ├── CustomersController.cs │ │ ├── DashboardsController.cs │ │ ├── LeadActivitiesController.cs │ │ ├── LeadAdditionalContactsController.cs │ │ ├── LeadNotesController.cs │ │ ├── LeadTypesController.cs │ │ ├── LeadsController.cs │ │ ├── LostReasonsController.cs │ │ ├── OpportunitiesController.cs │ │ ├── OpportunityActivitiesController.cs │ │ ├── PipelineStagesController.cs │ │ └── SalesChannelsController.cs │ │ ├── Models │ │ ├── ActivityType.cs │ │ ├── Customer.cs │ │ ├── CustomerActivity.cs │ │ ├── CustomerAdditionalContact.cs │ │ ├── CustomerNote.cs │ │ ├── CustomerType.cs │ │ ├── Lead.cs │ │ ├── LeadActivity.cs │ │ ├── LeadAdditionalContact.cs │ │ ├── LeadNote.cs │ │ ├── LeadType.cs │ │ ├── LostReason.cs │ │ ├── Opportunity.cs │ │ ├── OpportunityActivity.cs │ │ ├── PipelineStage.cs │ │ └── SalesChannel.cs │ │ ├── ViewModels │ │ └── Common │ │ │ ├── ChildActionButton.cs │ │ │ ├── ChildCreateNew.cs │ │ │ └── ChildGridAction.cs │ │ └── Views │ │ ├── ActivityTypes │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── CustomerActivities │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── CustomerAdditionalContacts │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── CustomerNotes │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── CustomerTypes │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Customers │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Dashboards │ │ └── Index.cshtml │ │ ├── LeadActivities │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ └── _CreateEdit.cshtml │ │ ├── LeadAdditionalContacts │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── LeadNotes │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── LeadTypes │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Leads │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ ├── Index.cshtml │ │ └── _CreateEdit.cshtml │ │ ├── LostReasons │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Opportunities │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── OpportunityActivities │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── PipelineStages │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── SalesChannels │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _ChildActionButtons.cshtml │ │ ├── _ChildCreateNew.cshtml │ │ ├── _ChildGridActions.cshtml │ │ ├── _Footer.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LayoutAdminlte.cshtml │ │ ├── _LoginPartial.cshtml │ │ ├── _Navigation.cshtml │ │ ├── _Sidebar.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ └── ManageController.cs ├── Data │ ├── ApplicationDbContext.cs │ └── DbInitializer.cs ├── Extensions │ ├── EmailSenderExtensions.cs │ └── UrlHelperExtensions.cs ├── Helpers │ └── HtmlHelpers.cs ├── Migrations │ ├── 20180311044756_first-migration.Designer.cs │ ├── 20180311044756_first-migration.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Models │ ├── AccountViewModels │ │ ├── ExternalLoginViewModel.cs │ │ ├── ForgotPasswordViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LoginWith2faViewModel.cs │ │ ├── LoginWithRecoveryCodeViewModel.cs │ │ ├── RegisterViewModel.cs │ │ └── ResetPasswordViewModel.cs │ ├── ApplicationUser.cs │ ├── BaseAddressModel.cs │ ├── BaseContactModel.cs │ ├── BaseModel.cs │ ├── ErrorViewModel.cs │ └── ManageViewModels │ │ ├── ChangePasswordViewModel.cs │ │ ├── EnableAuthenticatorViewModel.cs │ │ ├── ExternalLoginsViewModel.cs │ │ ├── IndexViewModel.cs │ │ ├── RemoveLoginViewModel.cs │ │ ├── SetPasswordViewModel.cs │ │ ├── ShowRecoveryCodesViewModel.cs │ │ └── TwoFactorAuthenticationViewModel.cs ├── Program.cs ├── ScaffoldingReadMe.txt ├── Services │ ├── EmailSender.cs │ └── IEmailSender.cs ├── Startup.cs ├── Statics │ └── TempDataKey.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 │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── 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 │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── motekarteknologi.csproj └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── 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 └── src.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/README.md -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/ActivityTypesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/ActivityTypesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/CustomerActivitiesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/CustomerActivitiesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/CustomerAdditionalContactsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/CustomerAdditionalContactsController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/CustomerNotesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/CustomerNotesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/CustomerTypesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/CustomerTypesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/DashboardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/DashboardsController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/LeadActivitiesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/LeadActivitiesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/LeadAdditionalContactsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/LeadAdditionalContactsController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/LeadNotesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/LeadNotesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/LeadTypesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/LeadTypesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/LeadsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/LeadsController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/LostReasonsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/LostReasonsController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/OpportunitiesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/OpportunitiesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/OpportunityActivitiesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/OpportunityActivitiesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/PipelineStagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/PipelineStagesController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Controllers/SalesChannelsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Controllers/SalesChannelsController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/ActivityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/ActivityType.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/Customer.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/CustomerActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/CustomerActivity.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/CustomerAdditionalContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/CustomerAdditionalContact.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/CustomerNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/CustomerNote.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/CustomerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/CustomerType.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/Lead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/Lead.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/LeadActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/LeadActivity.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/LeadAdditionalContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/LeadAdditionalContact.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/LeadNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/LeadNote.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/LeadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/LeadType.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/LostReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/LostReason.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/Opportunity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/Opportunity.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/OpportunityActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/OpportunityActivity.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/PipelineStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/PipelineStage.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Models/SalesChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Models/SalesChannel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/ViewModels/Common/ChildActionButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/ViewModels/Common/ChildActionButton.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/ViewModels/Common/ChildCreateNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/ViewModels/Common/ChildCreateNew.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/ViewModels/Common/ChildGridAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/ViewModels/Common/ChildGridAction.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/ActivityTypes/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/ActivityTypes/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/ActivityTypes/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/ActivityTypes/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/ActivityTypes/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/ActivityTypes/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/ActivityTypes/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/ActivityTypes/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/ActivityTypes/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/ActivityTypes/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerActivities/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerActivities/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerActivities/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerActivities/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerActivities/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerActivities/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerActivities/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerActivities/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerActivities/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerActivities/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerAdditionalContacts/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerNotes/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerNotes/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerNotes/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerNotes/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerNotes/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerNotes/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerNotes/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerNotes/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerNotes/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerNotes/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerTypes/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerTypes/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerTypes/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerTypes/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerTypes/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerTypes/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerTypes/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerTypes/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/CustomerTypes/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/CustomerTypes/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Customers/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Customers/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Customers/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Customers/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Customers/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Customers/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Customers/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Customers/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Customers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Customers/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Dashboards/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Dashboards/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadActivities/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadActivities/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadActivities/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadActivities/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadActivities/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadActivities/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadActivities/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadActivities/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadActivities/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadActivities/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadActivities/_CreateEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadActivities/_CreateEdit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadAdditionalContacts/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadNotes/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadNotes/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadNotes/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadNotes/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadNotes/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadNotes/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadNotes/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadNotes/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadNotes/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadNotes/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadTypes/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadTypes/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadTypes/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadTypes/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadTypes/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadTypes/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadTypes/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadTypes/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LeadTypes/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LeadTypes/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Leads/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Leads/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Leads/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Leads/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Leads/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Leads/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Leads/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Leads/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Leads/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Leads/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Leads/_CreateEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Leads/_CreateEdit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LostReasons/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LostReasons/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LostReasons/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LostReasons/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LostReasons/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LostReasons/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LostReasons/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LostReasons/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/LostReasons/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/LostReasons/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Opportunities/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Opportunities/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Opportunities/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Opportunities/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Opportunities/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Opportunities/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Opportunities/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Opportunities/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Opportunities/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Opportunities/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/OpportunityActivities/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/PipelineStages/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/PipelineStages/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/PipelineStages/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/PipelineStages/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/PipelineStages/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/PipelineStages/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/PipelineStages/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/PipelineStages/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/PipelineStages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/PipelineStages/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/SalesChannels/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/SalesChannels/Create.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/SalesChannels/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/SalesChannels/Delete.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/SalesChannels/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/SalesChannels/Details.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/SalesChannels/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/SalesChannels/Edit.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/SalesChannels/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/SalesChannels/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_ChildActionButtons.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_ChildActionButtons.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_ChildCreateNew.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_ChildCreateNew.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_ChildGridActions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_ChildGridActions.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_Footer.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_Footer.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_LayoutAdminlte.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_LayoutAdminlte.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_Navigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_Navigation.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_Sidebar.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_Sidebar.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Areas/crm/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Areas/crm/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Controllers/ManageController.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Data/DbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Data/DbInitializer.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Extensions/EmailSenderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Extensions/EmailSenderExtensions.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Extensions/UrlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Extensions/UrlHelperExtensions.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Helpers/HtmlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Helpers/HtmlHelpers.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Migrations/20180311044756_first-migration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Migrations/20180311044756_first-migration.Designer.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Migrations/20180311044756_first-migration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Migrations/20180311044756_first-migration.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/AccountViewModels/ExternalLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/AccountViewModels/ExternalLoginViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/AccountViewModels/LoginWith2faViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/AccountViewModels/LoginWith2faViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/BaseAddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/BaseAddressModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/BaseContactModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/BaseContactModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/BaseModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/EnableAuthenticatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/EnableAuthenticatorViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/ExternalLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/ExternalLoginsViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/ShowRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/ShowRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Program.cs -------------------------------------------------------------------------------- /src/motekarteknologi/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/ScaffoldingReadMe.txt -------------------------------------------------------------------------------- /src/motekarteknologi/Services/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Services/EmailSender.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Services/IEmailSender.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Startup.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Statics/TempDataKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Statics/TempDataKey.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Account/SignedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Account/SignedOut.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Home/About.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/ShowRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/ShowRecoveryCodes.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using motekarteknologi.Views.Manage -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/motekarteknologi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/appsettings.Development.json -------------------------------------------------------------------------------- /src/motekarteknologi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/appsettings.json -------------------------------------------------------------------------------- /src/motekarteknologi/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/bundleconfig.json -------------------------------------------------------------------------------- /src/motekarteknologi/motekarteknologi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/motekarteknologi.csproj -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/motekarteknologi/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/src.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/aspnetcore2-crm-plus/HEAD/src/src.sln --------------------------------------------------------------------------------