├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .idea └── .idea.SimplCommerce │ └── .idea │ ├── .name │ ├── encodings.xml │ ├── indexLayout.xml │ ├── projectSettingsUpdater.xml │ ├── vcs.xml │ └── workspace.xml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Delete-BIN-OBJ-Folders.bat ├── Dockerfile ├── Dockerfile-sqlite ├── License.txt ├── README.md ├── Settings.StyleCop ├── SimplCommerce.sln ├── aws-beanstalk ├── Dockerfile ├── ebapp │ ├── .ebextensions │ │ └── 01_nginx.config │ └── Dockerrun.aws.json └── simplcommerce-eb.zip ├── azure-pipelines.yml ├── docker-entrypoint.sh ├── global.json ├── jshint.option.xml ├── miscellaneous ├── Icon.png ├── Icon.psd └── Logo_SimplCommerce.psd ├── modular-architecture.png ├── run-tests.ps1 ├── run-tests.sh ├── simpl-build.sh ├── src ├── Database │ ├── Countries.sql │ ├── MySql │ │ └── StaticData-GB.sql │ ├── StaticData-BR-Address.sql │ ├── StaticData-BR.sql │ ├── StaticData-CN.sql │ ├── StaticData-DE.sql │ ├── StaticData-DefaultLocalization.sql │ ├── StaticData-ES.sql │ ├── StaticData-FR.sql │ ├── StaticData-GB.sql │ ├── StaticData-IR.sql │ ├── StaticData-KR.sql │ ├── StaticData-RU.sql │ ├── StaticData-TN.sql │ ├── StaticData-TR.sql │ ├── StaticData-UA.sql │ ├── StaticData-US.sql │ └── StaticData-VN.sql ├── Modules │ ├── Directory.Build.props │ ├── SimplCommerce.Module.ActivityLog │ │ ├── Areas │ │ │ └── ActivityLog │ │ │ │ └── Controllers │ │ │ │ └── MostViewedEntityController.cs │ │ ├── Data │ │ │ ├── ActivityLogCustomModelBuilder.cs │ │ │ ├── ActivityRepository.cs │ │ │ └── IActivityTypeRepository.cs │ │ ├── Events │ │ │ └── EntityViewedHandler.cs │ │ ├── Models │ │ │ ├── Activity.cs │ │ │ ├── ActivityType.cs │ │ │ └── MostViewEntityDto.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.ActivityLog.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── activitylog-service.js │ │ │ ├── activitylog.module.js │ │ │ ├── most-viewed-products.directive.html │ │ │ └── most-viewed-products.directive.js │ ├── SimplCommerce.Module.Catalog │ │ ├── Areas │ │ │ └── Catalog │ │ │ │ ├── Components │ │ │ │ ├── CategoryBreadcrumbViewComponent.cs │ │ │ │ ├── CategoryMenuViewComponent.cs │ │ │ │ ├── CategoryWidgetViewComponent.cs │ │ │ │ ├── ProductWidgetViewComponent.cs │ │ │ │ └── SimpleProductWidgetViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── BrandApiController.cs │ │ │ │ ├── BrandController.cs │ │ │ │ ├── CategoryApiController.cs │ │ │ │ ├── CategoryController.cs │ │ │ │ ├── CategoryTranslationApiController.cs │ │ │ │ ├── CategoryWidgetApiController.cs │ │ │ │ ├── ProductApiController.cs │ │ │ │ ├── ProductAttributeApiController.cs │ │ │ │ ├── ProductAttributeGroupApiController.cs │ │ │ │ ├── ProductCloneApiController.cs │ │ │ │ ├── ProductController.cs │ │ │ │ ├── ProductOptionApiController.cs │ │ │ │ ├── ProductPriceApiController.cs │ │ │ │ ├── ProductTemplateApiController.cs │ │ │ │ ├── ProductTranslationApiController.cs │ │ │ │ ├── ProductWidgetApiController.cs │ │ │ │ └── SimpleProductWidgetApiController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── BrandForm.cs │ │ │ │ ├── BrandVm.cs │ │ │ │ ├── CategoryForm.cs │ │ │ │ ├── CategoryListItem.cs │ │ │ │ ├── CategoryMenuItem.cs │ │ │ │ ├── CategoryThumbnail.cs │ │ │ │ ├── CategoryTranslationForm.cs │ │ │ │ ├── CategoryWidgetComponentVm.cs │ │ │ │ ├── CategoryWidgetForm.cs │ │ │ │ ├── CategoryWidgetSettings.cs │ │ │ │ ├── FilterBrand.cs │ │ │ │ ├── FilterCategory.cs │ │ │ │ ├── FilterOption.cs │ │ │ │ ├── FilterPrice.cs │ │ │ │ ├── ProductAttributeFormVm.cs │ │ │ │ ├── ProductAttributeGroupFormVm.cs │ │ │ │ ├── ProductAttributeVm.cs │ │ │ │ ├── ProductCategoryForm.cs │ │ │ │ ├── ProductCloneFormVm.cs │ │ │ │ ├── ProductDetail.cs │ │ │ │ ├── ProductDetailAttribute.cs │ │ │ │ ├── ProductDetailCategory.cs │ │ │ │ ├── ProductDetailOption.cs │ │ │ │ ├── ProductDetailVariation.cs │ │ │ │ ├── ProductDetailVariationOption.cs │ │ │ │ ├── ProductForm.cs │ │ │ │ ├── ProductLinkVm.cs │ │ │ │ ├── ProductListItem.cs │ │ │ │ ├── ProductMediaVm.cs │ │ │ │ ├── ProductOptionCombinationVm.cs │ │ │ │ ├── ProductOptionDisplay.cs │ │ │ │ ├── ProductOptionFormVm.cs │ │ │ │ ├── ProductOptionValueVm.cs │ │ │ │ ├── ProductOptionVm.cs │ │ │ │ ├── ProductPriceItemForm.cs │ │ │ │ ├── ProductTemplateFrom.cs │ │ │ │ ├── ProductThumbnail.cs │ │ │ │ ├── ProductTranslationForm.cs │ │ │ │ ├── ProductVariationVm.cs │ │ │ │ ├── ProductVm.cs │ │ │ │ ├── ProductWidgetComponentVm.cs │ │ │ │ ├── ProductWidgetForm.cs │ │ │ │ ├── ProductWidgetOrderBy.cs │ │ │ │ ├── ProductWidgetSetting.cs │ │ │ │ ├── ProductsByBrand.cs │ │ │ │ ├── ProductsByCategory.cs │ │ │ │ ├── SearchOption.cs │ │ │ │ ├── SimpleProductWidgetComponentVm.cs │ │ │ │ ├── SimpleProductWidgetForm.cs │ │ │ │ └── SimpleProductWidgetSetting.cs │ │ │ │ └── Views │ │ │ │ ├── Brand │ │ │ │ └── BrandDetail.cshtml │ │ │ │ ├── Category │ │ │ │ └── CategoryDetail.cshtml │ │ │ │ ├── Product │ │ │ │ ├── ProductDetail.cshtml │ │ │ │ └── ProductOverview.cshtml │ │ │ │ ├── Shared │ │ │ │ ├── Components │ │ │ │ │ ├── CategoryBreadcrumb │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ ├── CategoryMenu │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ ├── CategoryWidget │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ ├── ProductWidget │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ └── SimpleProductWidget │ │ │ │ │ │ └── Default.cshtml │ │ │ │ └── _ProductThumbnail.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ ├── CatalogCustomModelBuilder.cs │ │ │ ├── IProductTemplateProductAttributeRepository.cs │ │ │ └── ProductTemplateProductAttributeRepository.cs │ │ ├── Events │ │ │ └── ReviewSummaryChangedHandler.cs │ │ ├── Models │ │ │ ├── Brand.cs │ │ │ ├── CalculatedProductPrice.cs │ │ │ ├── Category.cs │ │ │ ├── Product.cs │ │ │ ├── ProductAttribute.cs │ │ │ ├── ProductAttributeGroup.cs │ │ │ ├── ProductAttributeValue.cs │ │ │ ├── ProductCategory.cs │ │ │ ├── ProductLink.cs │ │ │ ├── ProductLinkType.cs │ │ │ ├── ProductMedia.cs │ │ │ ├── ProductOption.cs │ │ │ ├── ProductOptionCombination.cs │ │ │ ├── ProductOptionValue.cs │ │ │ ├── ProductPriceHistory.cs │ │ │ ├── ProductTemplate.cs │ │ │ └── ProductTemplateProductAttribute.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── BrandService.cs │ │ │ ├── CategoryService.cs │ │ │ ├── IBrandService.cs │ │ │ ├── ICategoryService.cs │ │ │ ├── IProductPricingService.cs │ │ │ ├── IProductService.cs │ │ │ ├── ProductPricingService.cs │ │ │ └── ProductService.cs │ │ ├── SimplCommerce.Module.Catalog.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ ├── admin │ │ │ ├── brand │ │ │ │ ├── brand-form.html │ │ │ │ ├── brand-form.js │ │ │ │ ├── brand-list.html │ │ │ │ ├── brand-list.js │ │ │ │ └── brand-service.js │ │ │ ├── catalog.module.js │ │ │ ├── category-widget │ │ │ │ ├── category-widget-form.html │ │ │ │ ├── category-widget-form.js │ │ │ │ └── category-widget-service.js │ │ │ ├── category │ │ │ │ ├── category-form.html │ │ │ │ ├── category-form.js │ │ │ │ ├── category-list.html │ │ │ │ ├── category-list.js │ │ │ │ ├── category-service.js │ │ │ │ ├── category-translation-form.html │ │ │ │ └── category-translation-form.js │ │ │ ├── product-attribute-group │ │ │ │ ├── product-attribute-group-form.html │ │ │ │ ├── product-attribute-group-form.js │ │ │ │ ├── product-attribute-group-list.html │ │ │ │ ├── product-attribute-group-list.js │ │ │ │ └── product-attribute-group-service.js │ │ │ ├── product-attribute │ │ │ │ ├── product-attribute-form.html │ │ │ │ ├── product-attribute-form.js │ │ │ │ ├── product-attribute-list.html │ │ │ │ ├── product-attribute-list.js │ │ │ │ └── product-attribute-service.js │ │ │ ├── product-clone │ │ │ │ ├── product-clone-form.html │ │ │ │ ├── product-clone-form.js │ │ │ │ └── product-clone-service.js │ │ │ ├── product-option │ │ │ │ ├── product-option-form.html │ │ │ │ ├── product-option-form.js │ │ │ │ ├── product-option-list.html │ │ │ │ ├── product-option-list.js │ │ │ │ └── product-option-service.js │ │ │ ├── product-price │ │ │ │ ├── product-price-form.html │ │ │ │ ├── product-price-form.js │ │ │ │ └── product-price-service.js │ │ │ ├── product-template │ │ │ │ ├── product-template-form.html │ │ │ │ ├── product-template-form.js │ │ │ │ ├── product-template-list.html │ │ │ │ ├── product-template-list.js │ │ │ │ └── product-template-service.js │ │ │ ├── product-widget │ │ │ │ ├── product-widget-form.html │ │ │ │ ├── product-widget-form.js │ │ │ │ └── product-widget-service.js │ │ │ ├── product │ │ │ │ ├── product-form.html │ │ │ │ ├── product-form.js │ │ │ │ ├── product-list.html │ │ │ │ ├── product-list.js │ │ │ │ ├── product-option-display-directive.html │ │ │ │ ├── product-option-display-directive.js │ │ │ │ ├── product-selection-directive.html │ │ │ │ ├── product-selection-directive.js │ │ │ │ ├── product-service.js │ │ │ │ ├── product-translation-form.html │ │ │ │ └── product-translation-form.js │ │ │ └── simple-product-widget │ │ │ │ ├── simple-product-widget-form.html │ │ │ │ ├── simple-product-widget-form.js │ │ │ │ └── simple-product-widget-service.js │ │ │ ├── product-detail.css │ │ │ ├── product-detail.js │ │ │ ├── product-filter.js │ │ │ └── product-overview.js │ ├── SimplCommerce.Module.Cms │ │ ├── Areas │ │ │ └── Cms │ │ │ │ ├── Components │ │ │ │ ├── CarouselWidgetViewComponent.cs │ │ │ │ ├── MenuViewComponent.cs │ │ │ │ └── SpaceBarWidgetViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── CarouselWidgetApiController.cs │ │ │ │ ├── HtmlWidgetApiController.cs │ │ │ │ ├── MenuApiController.cs │ │ │ │ ├── PageApiController.cs │ │ │ │ ├── PageController.cs │ │ │ │ ├── PageTranslationApiController.cs │ │ │ │ └── SpaceBarWidgetApiContorller.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── CarouselWidgetForm.cs │ │ │ │ ├── CarouselWidgetItemForm.cs │ │ │ │ ├── CarouselWidgetViewComponentItemVm.cs │ │ │ │ ├── CarouselWidgetViewComponentVm.cs │ │ │ │ ├── HtmlWidgetForm.cs │ │ │ │ ├── MenuForm.cs │ │ │ │ ├── MenuItemForm.cs │ │ │ │ ├── MenuItemVm.cs │ │ │ │ ├── PageForm.cs │ │ │ │ ├── PageTranslationForm.cs │ │ │ │ ├── PageVm.cs │ │ │ │ ├── SpaceBarWidgetComponentVm.cs │ │ │ │ ├── SpaceBarWidgetForm.cs │ │ │ │ └── SpaceBarWidgetSetting.cs │ │ │ │ └── Views │ │ │ │ ├── Page │ │ │ │ └── PageDetail.cshtml │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ ├── CarouselWidget │ │ │ │ │ └── Default.cshtml │ │ │ │ │ ├── Menu │ │ │ │ │ └── Default.cshtml │ │ │ │ │ └── SpaceBarWidget │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── CmsCustomModelBuilder.cs │ │ ├── Events │ │ │ └── EntityDeletingHandler.cs │ │ ├── Models │ │ │ ├── Menu.cs │ │ │ ├── MenuItem.cs │ │ │ └── Page.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── IPageService.cs │ │ │ └── PageService.cs │ │ ├── SimplCommerce.Module.Cms.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── carousel-widget │ │ │ ├── carousel-widget-form.html │ │ │ ├── carousel-widget-form.js │ │ │ └── carousel-widget-service.js │ │ │ ├── cms.module.js │ │ │ ├── html-widget │ │ │ ├── html-widget-form.html │ │ │ ├── html-widget-form.js │ │ │ └── html-widget-service.js │ │ │ ├── menu │ │ │ ├── menu-form-create.html │ │ │ ├── menu-form-create.js │ │ │ ├── menu-form.html │ │ │ ├── menu-form.js │ │ │ ├── menu-list.html │ │ │ ├── menu-list.js │ │ │ └── menu-service.js │ │ │ ├── page │ │ │ ├── page-form.html │ │ │ ├── page-form.js │ │ │ ├── page-list.html │ │ │ ├── page-list.js │ │ │ ├── page-service.js │ │ │ ├── page-translation-form.html │ │ │ └── page-translation-form.js │ │ │ └── spacebar-widget │ │ │ ├── spacebar-widget-form.html │ │ │ ├── spacebar-widget-form.js │ │ │ └── spacebar-widget-service.js │ ├── SimplCommerce.Module.Comments │ │ ├── Areas │ │ │ └── Comments │ │ │ │ ├── Components │ │ │ │ └── CommentViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── CommentApiController.cs │ │ │ │ └── CommentController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── CommentForm.cs │ │ │ │ ├── CommentItem.cs │ │ │ │ └── CommentVm.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── Comment │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ ├── CommentModelBuilder.cs │ │ │ ├── CommentRepository.cs │ │ │ └── ICommentRepository.cs │ │ ├── Models │ │ │ ├── Comment.cs │ │ │ ├── CommentListItemDto.cs │ │ │ └── CommentStatus.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.Comments.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ ├── admin │ │ │ ├── comment │ │ │ │ ├── comment-list.html │ │ │ │ ├── comment-list.js │ │ │ │ └── comment-service.js │ │ │ └── comments.module.js │ │ │ ├── comment-service.js │ │ │ ├── comment.css │ │ │ └── comment.js │ ├── SimplCommerce.Module.Contacts │ │ ├── Areas │ │ │ └── Contacts │ │ │ │ ├── Controllers │ │ │ │ ├── ContactApiController.cs │ │ │ │ ├── ContactAreaApiController.cs │ │ │ │ ├── ContactAreaTranslationApiController.cs │ │ │ │ └── ContactController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── CompanyInformation.cs │ │ │ │ ├── ContactAreaForm.cs │ │ │ │ ├── ContactAreaTranslationForm.cs │ │ │ │ ├── ContactAreaVm.cs │ │ │ │ ├── ContactForm.cs │ │ │ │ └── ContactVm.cs │ │ │ │ └── Views │ │ │ │ ├── Contact │ │ │ │ ├── Index.cshtml │ │ │ │ └── SubmitContactResult.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── ContactCustomModelBuilder.cs │ │ ├── Models │ │ │ ├── Contact.cs │ │ │ └── ContactArea.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.Contacts.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ ├── admin │ │ │ ├── contact-area │ │ │ │ ├── contact-area-form.html │ │ │ │ ├── contact-area-form.js │ │ │ │ ├── contact-area-list.html │ │ │ │ ├── contact-area-list.js │ │ │ │ ├── contact-area-service.js │ │ │ │ ├── contact-area-translation-form.html │ │ │ │ └── contact-area-translation-form.js │ │ │ ├── contacts.module.js │ │ │ └── contacts │ │ │ │ ├── contact-list.html │ │ │ │ ├── contact-list.js │ │ │ │ ├── contact-service.js │ │ │ │ ├── contact.html │ │ │ │ └── contact.js │ │ │ └── init-google-map.js │ ├── SimplCommerce.Module.Core │ │ ├── Areas │ │ │ └── Core │ │ │ │ ├── Components │ │ │ │ └── DefaultShippingAddressViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── AccountController.cs │ │ │ │ ├── AppSettingApiController.cs │ │ │ │ ├── CommonApiController.cs │ │ │ │ ├── CountryApiController.cs │ │ │ │ ├── CustomerGroupApiController.cs │ │ │ │ ├── DashboardController.cs │ │ │ │ ├── DistrictApiController.cs │ │ │ │ ├── EntityApiController.cs │ │ │ │ ├── EntityTypeApiController.cs │ │ │ │ ├── HomeAdminController.cs │ │ │ │ ├── HomeController.cs │ │ │ │ ├── ManageController.cs │ │ │ │ ├── RoleApiController.cs │ │ │ │ ├── StateOrProvinceApiController.cs │ │ │ │ ├── ThemeApiController.cs │ │ │ │ ├── UserAddressController.cs │ │ │ │ ├── UserApiController.cs │ │ │ │ ├── WidgetApiController.cs │ │ │ │ ├── WidgetInstanceApiController.cs │ │ │ │ └── WidgetZoneApiController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── Account │ │ │ │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ │ │ ├── LoginViewModel.cs │ │ │ │ │ ├── RegisterViewModel.cs │ │ │ │ │ ├── ResetPasswordViewModel.cs │ │ │ │ │ ├── SendCodeViewModel.cs │ │ │ │ │ └── VerifyCodeViewModel.cs │ │ │ │ ├── AppSettingVm.cs │ │ │ │ ├── BreadcrumbViewModel.cs │ │ │ │ ├── CountryForm.cs │ │ │ │ ├── CustomerGroupForm.cs │ │ │ │ ├── HomeViewModel.cs │ │ │ │ ├── Manage │ │ │ │ │ ├── AddPhoneNumberViewModel.cs │ │ │ │ │ ├── ChangePasswordViewModel.cs │ │ │ │ │ ├── ConfigureTwoFactorViewModel.cs │ │ │ │ │ ├── DefaultAddressViewComponentVm.cs │ │ │ │ │ ├── FactorViewModel.cs │ │ │ │ │ ├── IndexViewModel.cs │ │ │ │ │ ├── ManageLoginsViewModel.cs │ │ │ │ │ ├── RemoveLoginViewModel.cs │ │ │ │ │ ├── SetPasswordViewModel.cs │ │ │ │ │ ├── UserInfoVm.cs │ │ │ │ │ ├── UserSettingViewModel.cs │ │ │ │ │ └── VerifyPhoneNumberViewModel.cs │ │ │ │ ├── MediaViewModel.cs │ │ │ │ ├── ProjectDetailsVm.cs │ │ │ │ ├── ProjectItemVm.cs │ │ │ │ ├── StateOrProvinceForm.cs │ │ │ │ ├── ThemeListItem.cs │ │ │ │ ├── UserAddressFormViewModel.cs │ │ │ │ ├── UserAddressListItem.cs │ │ │ │ ├── UserForm.cs │ │ │ │ ├── UserSearchOption.cs │ │ │ │ ├── WidgetFormBase.cs │ │ │ │ └── WidgetInstanceViewModel.cs │ │ │ │ └── Views │ │ │ │ ├── Account │ │ │ │ ├── AccessDenied.cshtml │ │ │ │ ├── ConfirmEmail.cshtml │ │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ │ ├── ForgotPassword.cshtml │ │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ │ ├── Lockout.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── Register.cshtml │ │ │ │ ├── ResetPassword.cshtml │ │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ │ ├── SendCode.cshtml │ │ │ │ └── VerifyCode.cshtml │ │ │ │ ├── Dashboard │ │ │ │ └── HomeTemplate.cshtml │ │ │ │ ├── EmailTemplate │ │ │ │ └── AccountRegisteredConfirmationEmailModel.cshtml │ │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ │ ├── HomeAdmin │ │ │ │ └── Index.cshtml │ │ │ │ ├── Manage │ │ │ │ ├── ChangePassword.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── ManageLogins.cshtml │ │ │ │ ├── SetPassword.cshtml │ │ │ │ ├── UserInfo.cshtml │ │ │ │ └── UserSettings.cshtml │ │ │ │ ├── Shared │ │ │ │ ├── Components │ │ │ │ │ └── DefaultShippingAddress │ │ │ │ │ │ └── Default.cshtml │ │ │ │ └── _WidgetInstances.cshtml │ │ │ │ ├── UserAddress │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── List.cshtml │ │ │ │ └── _AddressForm.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ ├── CoreCustomModelBuilder.cs │ │ │ ├── CoreSeedData.cs │ │ │ ├── Repository.cs │ │ │ ├── RepositoryWithTypedId.cs │ │ │ └── SimplDbContext.cs │ │ ├── Events │ │ │ ├── EntityDeleting.cs │ │ │ ├── EntityViewed.cs │ │ │ ├── ReviewSummaryChanged.cs │ │ │ └── UserSignedIn.cs │ │ ├── Extensions │ │ │ ├── EFConfigProvider.cs │ │ │ ├── EFConfigSource.cs │ │ │ ├── EFConfigurationDbContext.cs │ │ │ ├── EFConfigurationProviderExtension.cs │ │ │ ├── IWorkContext.cs │ │ │ ├── LocalizedStringExtensions.cs │ │ │ ├── Settings │ │ │ │ ├── SettingDefinition.cs │ │ │ │ ├── SettingDefinitionExtensions.cs │ │ │ │ └── SettingDefinitionProvider.cs │ │ │ ├── SimplRoleStore.cs │ │ │ ├── SimplSignInManager.cs │ │ │ ├── SimplUserStore.cs │ │ │ ├── SlugRouteValueTransformer.cs │ │ │ ├── TagHelpers │ │ │ │ └── AppendVersionTagHelper.cs │ │ │ └── WorkContext.cs │ │ ├── Models │ │ │ ├── Address.cs │ │ │ ├── AddressType.cs │ │ │ ├── AppSetting.cs │ │ │ ├── Content.cs │ │ │ ├── Country.cs │ │ │ ├── CustomerGroup.cs │ │ │ ├── CustomerGroupUser.cs │ │ │ ├── District.cs │ │ │ ├── Entity.cs │ │ │ ├── EntityType.cs │ │ │ ├── Media.cs │ │ │ ├── MediaType.cs │ │ │ ├── Role.cs │ │ │ ├── SimplConstants.cs │ │ │ ├── StateOrProvince.cs │ │ │ ├── ThemeManifest.cs │ │ │ ├── User.cs │ │ │ ├── UserAddress.cs │ │ │ ├── UserRole.cs │ │ │ ├── Vendor.cs │ │ │ ├── Widget.cs │ │ │ ├── WidgetInstance.cs │ │ │ ├── WidgetZone.cs │ │ │ └── WidgetZoneIds.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── CurrencyService.cs │ │ │ ├── EntityService.cs │ │ │ ├── IContentLocalizationService.cs │ │ │ ├── ICurrencyService.cs │ │ │ ├── IEmailSender.cs │ │ │ ├── IEntityService.cs │ │ │ ├── IMediaService.cs │ │ │ ├── IPdfConverter.cs │ │ │ ├── ISettingService.cs │ │ │ ├── ISmsSender.cs │ │ │ ├── IStorageService.cs │ │ │ ├── IThemeService.cs │ │ │ ├── IWidgetInstanceService.cs │ │ │ ├── MediaService.cs │ │ │ ├── SettingService.cs │ │ │ ├── SmsSender.cs │ │ │ ├── ThemeService.cs │ │ │ └── WidgetInstanceService.cs │ │ ├── SimplCommerce.Module.Core.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ ├── Logo_SimplCommerce.png │ │ │ ├── admin │ │ │ ├── admin-app-config.js │ │ │ ├── admin-core.css │ │ │ ├── common │ │ │ │ ├── common.js │ │ │ │ ├── exception.js │ │ │ │ ├── logger.js │ │ │ │ ├── simplUtil.js │ │ │ │ ├── slugify.js │ │ │ │ ├── st-date-range.html │ │ │ │ ├── st-date-range.js │ │ │ │ ├── summernote-service.js │ │ │ │ └── translation-service.js │ │ │ ├── configuration │ │ │ │ ├── configuration-service.js │ │ │ │ ├── configuration.html │ │ │ │ └── configuration.js │ │ │ ├── core.module.js │ │ │ ├── countries │ │ │ │ ├── country-form.html │ │ │ │ ├── country-form.js │ │ │ │ ├── country-list.html │ │ │ │ ├── country-list.js │ │ │ │ └── country-service.js │ │ │ ├── customergroups │ │ │ │ ├── customergroup-form.html │ │ │ │ ├── customergroup-form.js │ │ │ │ ├── customergroup-list.html │ │ │ │ ├── customergroup-list.js │ │ │ │ └── customergroup-service.js │ │ │ ├── dashboard │ │ │ │ └── dashboard.module.js │ │ │ ├── stateprovince │ │ │ │ ├── state-province-form.html │ │ │ │ ├── state-province-form.js │ │ │ │ ├── state-province-list.html │ │ │ │ ├── state-province-list.js │ │ │ │ └── state-province-service.js │ │ │ ├── themes │ │ │ │ ├── online-theme-list.html │ │ │ │ ├── online-theme-list.js │ │ │ │ ├── theme-details.html │ │ │ │ ├── theme-details.js │ │ │ │ ├── theme-list.html │ │ │ │ ├── theme-list.js │ │ │ │ └── theme-service.js │ │ │ ├── user │ │ │ │ ├── user-form.html │ │ │ │ ├── user-form.js │ │ │ │ ├── user-list.html │ │ │ │ ├── user-list.js │ │ │ │ └── user-service.js │ │ │ └── widget │ │ │ │ ├── widget-instance-list.html │ │ │ │ ├── widget-instance-list.js │ │ │ │ └── widget-service.js │ │ │ ├── main.js │ │ │ ├── site.css │ │ │ ├── site.min.css │ │ │ └── user-address.js │ ├── SimplCommerce.Module.DinkToPdf │ │ ├── DinkToPdfConverter.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.DinkToPdf.csproj │ │ └── module.json │ ├── SimplCommerce.Module.EmailSenderSendgrid │ │ ├── EmailSender.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.EmailSenderSendgrid.csproj │ │ └── module.json │ ├── SimplCommerce.Module.EmailSenderSmtp │ │ ├── Data │ │ │ └── EmailSenderSmptCustomModelBuilder.cs │ │ ├── EmailConfig.cs │ │ ├── EmailSender.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.EmailSenderSmtp.csproj │ │ └── module.json │ ├── SimplCommerce.Module.HangfireJobs │ │ ├── About.md │ │ ├── Extensions │ │ │ ├── BackgroundJobManagerExtensions.cs │ │ │ ├── HangfireConfigureExtensions.cs │ │ │ ├── HangfireJobsRegisterExtensions.cs │ │ │ └── HangfireServiceCollectionExtensions.cs │ │ ├── Internal │ │ │ ├── BackgroundJobArgsHelper.cs │ │ │ ├── BackgroundJobCollection.cs │ │ │ ├── BackgroundJobDescriptor.cs │ │ │ ├── HangfireConfigureOptions.cs │ │ │ └── HangfireDashboardAuthorizationFilter.cs │ │ ├── Models │ │ │ ├── BackgroundJob.cs │ │ │ ├── CommonCrons.cs │ │ │ ├── IBackgroundJob.cs │ │ │ └── ScheduledJob.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── BackgroundJobManager.cs │ │ │ └── IBackgroundJobManager.cs │ │ ├── SimplCommerce.Module.HangfireJobs.csproj │ │ └── module.json │ ├── SimplCommerce.Module.Inventory │ │ ├── Areas │ │ │ └── Inventory │ │ │ │ ├── Controllers │ │ │ │ ├── StockApiController.cs │ │ │ │ ├── WarehouseApiController.cs │ │ │ │ └── WarehouseProductApiController.cs │ │ │ │ └── ViewModels │ │ │ │ ├── MangeWarehouseProductItemVm.cs │ │ │ │ ├── StockVm.cs │ │ │ │ └── WarehouseVm.cs │ │ ├── Data │ │ │ └── InventoryCustomModelBuilder.cs │ │ ├── Models │ │ │ ├── Stock.cs │ │ │ ├── StockHistory.cs │ │ │ └── Warehouse.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── IStockService.cs │ │ │ ├── StockService.cs │ │ │ └── StockUpdateRequest.cs │ │ ├── SimplCommerce.Module.Inventory.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── inventory.module.js │ │ │ ├── stock │ │ │ ├── stock-form.html │ │ │ ├── stock-form.js │ │ │ ├── stock-history.html │ │ │ ├── stock-history.js │ │ │ └── stock-service.js │ │ │ └── warehouse │ │ │ ├── manage-products-form.html │ │ │ ├── manage-products-form.js │ │ │ ├── warehouse-form.html │ │ │ ├── warehouse-form.js │ │ │ ├── warehouse-list.html │ │ │ ├── warehouse-list.js │ │ │ └── warehouse-service.js │ ├── SimplCommerce.Module.Localization │ │ ├── Areas │ │ │ └── Localization │ │ │ │ ├── Controllers │ │ │ │ ├── LocalizationApiController.cs │ │ │ │ └── LocalizationController.cs │ │ │ │ └── ViewModel │ │ │ │ └── ResourceItemVm.cs │ │ ├── Data │ │ │ └── LocalizationCustomModelBuilder.cs │ │ ├── EFStringLocalizer.cs │ │ ├── EFStringLocalizerFactory.cs │ │ ├── EFStringLocalizerOfT.cs │ │ ├── EfRequestCultureProvider.cs │ │ ├── Events │ │ │ └── UserSignedInHandler.cs │ │ ├── Extensions │ │ │ ├── CultureInfoExtensions.cs │ │ │ └── LocalizationServiceCollectionExtensions.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ └── ContentLocalizationService.cs │ │ ├── SimplCommerce.Module.Localization.csproj │ │ ├── TagHelpers │ │ │ └── LanguageDirectionTagHelperComponent.cs │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── localization.module.js │ │ │ └── localization │ │ │ ├── localization-form.html │ │ │ ├── localization-form.js │ │ │ └── localization-service.js │ ├── SimplCommerce.Module.News │ │ ├── Areas │ │ │ └── News │ │ │ │ ├── Controllers │ │ │ │ ├── NewsCategoryApiController.cs │ │ │ │ ├── NewsCategoryController.cs │ │ │ │ ├── NewsItemApiController.cs │ │ │ │ └── NewsItemController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── NewsCategoryForm.cs │ │ │ │ ├── NewsCategoryVm.cs │ │ │ │ ├── NewsItemForm.cs │ │ │ │ ├── NewsItemThumbnail.cs │ │ │ │ ├── NewsItemVm.cs │ │ │ │ └── NewsVm.cs │ │ │ │ └── Views │ │ │ │ ├── NewsCategory │ │ │ │ └── NewsCategoryDetail.cshtml │ │ │ │ ├── NewsItem │ │ │ │ ├── NewsHome.cshtml │ │ │ │ └── NewsItemDetail.cshtml │ │ │ │ ├── Shared │ │ │ │ └── _NewsThumbnail.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── NewsCustomModelBuilder.cs │ │ ├── Models │ │ │ ├── NewsCategory.cs │ │ │ ├── NewsItem.cs │ │ │ └── NewsItemCategory.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── INewsCategoryService.cs │ │ │ ├── INewsItemService.cs │ │ │ ├── NewsCategoryService.cs │ │ │ └── NewsItemService.cs │ │ ├── SimplCommerce.Module.News.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── news-categories │ │ │ ├── news-category-form.html │ │ │ ├── news-category-form.js │ │ │ ├── news-category-list.html │ │ │ ├── news-category-list.js │ │ │ └── news-category-service.js │ │ │ ├── news-items │ │ │ ├── news-item-form.html │ │ │ ├── news-item-form.js │ │ │ ├── news-item-list.html │ │ │ ├── news-item-list.js │ │ │ └── news-item-service.js │ │ │ └── news.module.js │ ├── SimplCommerce.Module.Notifications │ │ ├── Areas │ │ │ └── Notifications │ │ │ │ ├── Components │ │ │ │ └── TestRealTimeNotificationFormViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ └── NotificationsController.cs │ │ │ │ ├── ViewModels │ │ │ │ └── TestNotificationVm.cs │ │ │ │ └── Views │ │ │ │ ├── Notifications │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── TestRealTimeNotificationForm │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ ├── INotificationRepository.cs │ │ │ ├── NotificationRepository.cs │ │ │ └── NotificationsCustomModelBuilder.cs │ │ ├── Events │ │ │ └── UserSignedInHandler.cs │ │ ├── Helpers │ │ │ └── EntityHelper.cs │ │ ├── Jobs │ │ │ ├── NotificationDistributionJob.cs │ │ │ └── NotificationDistributionJobArgs.cs │ │ ├── Models │ │ │ ├── EntityIdentifier.cs │ │ │ ├── MessageNotificationData.cs │ │ │ ├── NotificationData.cs │ │ │ ├── NotificationDefinition.cs │ │ │ ├── NotificationDetail.cs │ │ │ ├── NotificationDetailDto.cs │ │ │ ├── NotificationDetailExtensions.cs │ │ │ ├── NotificationScheme.cs │ │ │ ├── NotificationSeverity.cs │ │ │ ├── NotificationSubscription.cs │ │ │ ├── NotificationSubscriptionDto.cs │ │ │ ├── NotificationSubscriptionExtensions.cs │ │ │ ├── UserNotification.cs │ │ │ ├── UserNotificationDto.cs │ │ │ ├── UserNotificationExtensions.cs │ │ │ ├── UserNotificationState.cs │ │ │ ├── UserNotificationWithNotificationDetail.cs │ │ │ └── UserNotificationWithNotificationDetailExtensions.cs │ │ ├── ModuleInitializer.cs │ │ ├── NotificationDefinitions.cs │ │ ├── Notifiers │ │ │ ├── ITestNotifier.cs │ │ │ └── TestNotifier.cs │ │ ├── Services │ │ │ ├── INotificationDefinitionManager.cs │ │ │ ├── INotificationDistributer.cs │ │ │ ├── INotificationPublisher.cs │ │ │ ├── INotificationSubscriptionManager.cs │ │ │ ├── IRealTimeNotifier.cs │ │ │ ├── IUserNotificationManager.cs │ │ │ ├── NotificationDefinitionManager.cs │ │ │ ├── NotificationDefinitionManagerExtensions.cs │ │ │ ├── NotificationDistributer.cs │ │ │ ├── NotificationExtensions.cs │ │ │ ├── NotificationPublisher.cs │ │ │ ├── NotificationSubscriptionManager.cs │ │ │ ├── SignalRRealTimeNotifier.cs │ │ │ └── UserNotificationManager.cs │ │ ├── SettingDefinitions.cs │ │ ├── SimplCommerce.Module.Notifications.csproj │ │ ├── module.json │ │ └── wwwroot │ │ │ └── notifications.signalr.js │ ├── SimplCommerce.Module.Orders │ │ ├── Areas │ │ │ └── Orders │ │ │ │ ├── Components │ │ │ │ └── OrderSummaryViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── CheckoutApiController.cs │ │ │ │ ├── CheckoutController.cs │ │ │ │ ├── InvoiceApiController.cs │ │ │ │ ├── OrderApiController.cs │ │ │ │ ├── OrderController.cs │ │ │ │ └── OrderHistoryApiController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── AddressFormVm.cs │ │ │ │ ├── CartItemVm.cs │ │ │ │ ├── DeliveryInformationVm.cs │ │ │ │ ├── OrderDetailVm.cs │ │ │ │ ├── OrderExportVm.cs │ │ │ │ ├── OrderHistoryListItem.cs │ │ │ │ ├── OrderHistoryProductVm.cs │ │ │ │ ├── OrderItemVm.cs │ │ │ │ ├── OrderLineExportVm.cs │ │ │ │ ├── OrderStatusForm.cs │ │ │ │ ├── OrderTaxAndShippingPriceVm.cs │ │ │ │ ├── ShippingAddressVm.cs │ │ │ │ └── TaxAndShippingPriceRequestVm.cs │ │ │ │ └── Views │ │ │ │ ├── Checkout │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Shipping.cshtml │ │ │ │ └── Success.cshtml │ │ │ │ ├── EmailTemplates │ │ │ │ └── OrderEmailToCustomer.cshtml │ │ │ │ ├── Order │ │ │ │ ├── OrderDetails.cshtml │ │ │ │ └── OrderHistoryList.cshtml │ │ │ │ ├── Shared │ │ │ │ ├── Components │ │ │ │ │ └── OrderSummary │ │ │ │ │ │ └── Default.cshtml │ │ │ │ └── InvoicePdf.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── OrderCustomModelBuilder.cs │ │ ├── Events │ │ │ ├── AfterOrderCreated.cs │ │ │ ├── AfterOrderCreatedSendEmailHanlder.cs │ │ │ ├── OrderChanged.cs │ │ │ ├── OrderChangedCreateOrderHistoryHandler.cs │ │ │ ├── OrderCreated.cs │ │ │ ├── OrderCreatedCreateOrderHistoryHandler.cs │ │ │ └── OrderDetailGot.cs │ │ ├── Models │ │ │ ├── Order.cs │ │ │ ├── OrderAddress.cs │ │ │ ├── OrderHistory.cs │ │ │ ├── OrderItem.cs │ │ │ └── OrderStatus.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── IOrderEmailService.cs │ │ │ ├── IOrderService.cs │ │ │ ├── OrderCancellationBackgroundService.cs │ │ │ ├── OrderEmailService.cs │ │ │ └── OrderService.cs │ │ ├── SimplCommerce.Module.Orders.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ ├── admin │ │ │ ├── order │ │ │ │ ├── order-create.html │ │ │ │ ├── order-create.js │ │ │ │ ├── order-detail.html │ │ │ │ ├── order-detail.js │ │ │ │ ├── order-list.html │ │ │ │ ├── order-list.js │ │ │ │ ├── order-service.js │ │ │ │ ├── order-widget.directive.html │ │ │ │ └── order-widget.directive.js │ │ │ └── orders.module.js │ │ │ └── checkout.js │ ├── SimplCommerce.Module.PaymentBraintree │ │ ├── Areas │ │ │ └── PaymentBraintree │ │ │ │ ├── Components │ │ │ │ └── BraintreeLandingViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── BraintreeApiController.cs │ │ │ │ └── BraintreeController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── BraintreeCheckoutForm.cs │ │ │ │ └── BraintreeConfigForm.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── BraintreeLanding │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentBraintreeCustomModelBuilder.cs │ │ ├── Models │ │ │ └── PaymentProviderHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── BraintreeConfiguration.cs │ │ │ └── IBraintreeConfiguration.cs │ │ ├── SimplCommerce.Module.PaymentBraintree.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── braintree │ │ │ ├── braintree-config-form.html │ │ │ ├── braintree-config-form.js │ │ │ └── braintree-service.js │ │ │ └── paymentbraintree.module.js │ ├── SimplCommerce.Module.PaymentCashfree │ │ ├── Areas │ │ │ └── PaymentCashfree │ │ │ │ ├── Components │ │ │ │ └── CashfreeLandingViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── CashfreeApiController.cs │ │ │ │ └── CashfreeController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── CashfreeCheckoutForm.cs │ │ │ │ ├── CashfreeConfigForm.cs │ │ │ │ └── CashfreeResponse.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── CashfreeLanding │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentCashfreeCustomModelBuilder.cs │ │ ├── Models │ │ │ └── PaymentProviderHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.PaymentCashfree.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── cashfree │ │ │ ├── cashfree-config-form.html │ │ │ ├── cashfree-config-form.js │ │ │ └── cashfree-service.js │ │ │ └── paymentCashfree.module.js │ ├── SimplCommerce.Module.PaymentCoD │ │ ├── Areas │ │ │ └── PaymentCoD │ │ │ │ ├── Components │ │ │ │ └── CoDLandingViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── CoDApiController.cs │ │ │ │ └── CoDController.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── CoDLanding │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentCoDCustomModelBuilder.cs │ │ ├── Models │ │ │ ├── CoDSetting.cs │ │ │ └── PaymentProviderHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.PaymentCoD.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── config │ │ │ ├── cod-service.js │ │ │ ├── config-form.html │ │ │ └── config-form.js │ │ │ └── paymentCoD.module.js │ ├── SimplCommerce.Module.PaymentMomo │ │ ├── Areas │ │ │ └── PaymentMomo │ │ │ │ ├── Components │ │ │ │ └── MomoLandingViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── MomoPaymentApiController.cs │ │ │ │ └── MomoPaymentController.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── MomoLanding │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentMomoCustomModelBuilder.cs │ │ ├── Models │ │ │ └── PaymentProviderHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── MomoSecurityHelper.cs │ │ ├── SimplCommerce.Module.PaymentMomo.csproj │ │ ├── ViewModels │ │ │ ├── MomoCheckoutForm.cs │ │ │ ├── MomoPaymentConfigForm.cs │ │ │ ├── PaymentSubmitRequest.cs │ │ │ ├── PaymentSubmitResponse.cs │ │ │ ├── PaymentSubmitResult.cs │ │ │ ├── StatusRequest.cs │ │ │ └── StatusResponse.cs │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── momo │ │ │ ├── momo-config-form.html │ │ │ ├── momo-config-form.js │ │ │ └── momo-service.js │ │ │ └── paymentMomo.module.js │ ├── SimplCommerce.Module.PaymentNganLuong │ │ ├── Areas │ │ │ └── PaymentNganLuong │ │ │ │ ├── Components │ │ │ │ └── NganLuongLandingViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── NganLuongApiController.cs │ │ │ │ └── NganLuongController.cs │ │ │ │ └── Views │ │ │ │ ├── NganLuong │ │ │ │ └── PaymentMethods.cshtml │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── NganLuongLanding │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentNganLuongCustomerModelBuilder.cs │ │ ├── ErrorMessages.cs │ │ ├── Models │ │ │ └── PaymentProviderHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── SecurityHelper.cs │ │ ├── SimplCommerce.Module.PaymentNganLuong.csproj │ │ ├── ViewModels │ │ │ ├── NganLuongConfigForm.cs │ │ │ ├── PaymentStatusRequest.cs │ │ │ ├── PaymentStatusResponse.cs │ │ │ ├── PaymentSubmitRequest.cs │ │ │ ├── PaymentSubmitResponse.cs │ │ │ └── PaymentSubmitReturn.cs │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── ngan-luong │ │ │ ├── ngan-luong-config-form.html │ │ │ ├── ngan-luong-config-form.js │ │ │ └── ngan-luong-service.js │ │ │ └── paymentNganLuong.module.js │ ├── SimplCommerce.Module.PaymentPaypalExpress │ │ ├── Areas │ │ │ └── PaymentPaypalExpress │ │ │ │ ├── Components │ │ │ │ └── PaypalExpressLandingViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── PaypalExpressApiController.cs │ │ │ │ └── PaypalExpressController.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── PaypalExpressLanding │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentPaypalExpressCustomModelBuilder.cs │ │ ├── Models │ │ │ └── PaymentProviderHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.PaymentPaypalExpress.csproj │ │ ├── ViewModels │ │ │ ├── ExperienceProfile.cs │ │ │ ├── PaymentCreateRequest.cs │ │ │ ├── PaymentExecuteRequest.cs │ │ │ ├── PaymentExecuteVm.cs │ │ │ ├── PaypalExpressCheckoutForm.cs │ │ │ └── PaypalExpressConfigForm.cs │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── config │ │ │ ├── config-form.html │ │ │ ├── config-form.js │ │ │ └── paypalExpress-service.js │ │ │ └── paypalExpress.module.js │ ├── SimplCommerce.Module.PaymentStripe │ │ ├── Areas │ │ │ └── PaymentStripe │ │ │ │ ├── Components │ │ │ │ └── StripeLandingViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── StripeApiController.cs │ │ │ │ └── StripeController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── StripeCheckoutForm.cs │ │ │ │ └── StripeConfigForm.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── StripeLanding │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentStripeCustomModelBuilder.cs │ │ ├── Models │ │ │ └── PaymentProviderHelper.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.PaymentStripe.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── paymentStripe.module.js │ │ │ └── stripe │ │ │ ├── stripe-config-form.html │ │ │ ├── stripe-config-form.js │ │ │ └── stripe-service.js │ ├── SimplCommerce.Module.Payments │ │ ├── Areas │ │ │ └── Payments │ │ │ │ ├── Controllers │ │ │ │ ├── CheckoutController.cs │ │ │ │ ├── PaymentApiController.cs │ │ │ │ └── PaymentProviderApiController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── CheckoutPaymentForm.cs │ │ │ │ └── PaymentProviderVm.cs │ │ │ │ └── Views │ │ │ │ ├── Checkout │ │ │ │ └── Payment.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ └── PaymentsCustomModelBuilder.cs │ │ ├── Models │ │ │ ├── Payment.cs │ │ │ ├── PaymentProvider.cs │ │ │ └── PaymentStatus.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.Payments.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── payment │ │ │ ├── payment-list-by-order.directive.html │ │ │ ├── payment-list-by-order.directive.js │ │ │ └── payment-service.js │ │ │ ├── payments.module.js │ │ │ └── provider │ │ │ ├── payment-provider-list.html │ │ │ ├── payment-provider-list.js │ │ │ └── payment-provider-service.js │ ├── SimplCommerce.Module.Pricing │ │ ├── Areas │ │ │ └── Pricing │ │ │ │ ├── Controllers │ │ │ │ ├── CartRuleApiController.cs │ │ │ │ └── CartRuleUsageApiController.cs │ │ │ │ └── ViewModels │ │ │ │ ├── CartRuleForm.cs │ │ │ │ └── CartRuleProductVm.cs │ │ ├── Data │ │ │ └── PricingCustomModelBuilder.cs │ │ ├── Models │ │ │ ├── CartRule.cs │ │ │ ├── CartRuleCategory.cs │ │ │ ├── CartRuleCustomerGroup.cs │ │ │ ├── CartRuleProduct.cs │ │ │ ├── CartRuleUsage.cs │ │ │ ├── CatalogRule.cs │ │ │ ├── CatalogRuleCustomerGroup.cs │ │ │ └── Coupon.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── CartInfoForCoupon.cs │ │ │ ├── CartItemForCoupon.cs │ │ │ ├── CouponService.cs │ │ │ ├── CouponValidationResult.cs │ │ │ ├── DiscountableProduct.cs │ │ │ ├── DiscountedProduct.cs │ │ │ └── ICouponService.cs │ │ ├── SimplCommerce.Module.Pricing.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── cart-rule-usage │ │ │ ├── cart-rule-usage-list.html │ │ │ ├── cart-rule-usage-list.js │ │ │ └── cart-rule-usage-service.js │ │ │ ├── cart-rule │ │ │ ├── cart-rule-form.html │ │ │ ├── cart-rule-form.js │ │ │ ├── cart-rule-list.html │ │ │ ├── cart-rule-list.js │ │ │ └── cart-rule-service.js │ │ │ └── pricing.module.js │ ├── SimplCommerce.Module.ProductComparison │ │ ├── Areas │ │ │ └── ProductComparison │ │ │ │ ├── Controllers │ │ │ │ └── ComparingProductController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── AddToComparisonModel.cs │ │ │ │ ├── AddToComparisonResult.cs │ │ │ │ ├── AttributeValueVm.cs │ │ │ │ ├── AttributeVm.cs │ │ │ │ ├── ComparingProductVm.cs │ │ │ │ └── ProductComparisonVm.cs │ │ │ │ └── Views │ │ │ │ ├── ComparingProduct │ │ │ │ ├── AddToComparisonResult.cshtml │ │ │ │ └── Index.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Events │ │ │ └── UserSignedInHandler.cs │ │ ├── Models │ │ │ └── ComparingProduct.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── ComparingProductService.cs │ │ │ ├── IComparingProductService.cs │ │ │ └── TooManyComparingProductException.cs │ │ ├── SimplCommerce.Module.ProductComparison.csproj │ │ ├── module.json │ │ └── wwwroot │ │ │ └── product-comparison.js │ ├── SimplCommerce.Module.ProductRecentlyViewed │ │ ├── Areas │ │ │ └── ProductRecentlyViewed │ │ │ │ ├── Components │ │ │ │ ├── ProductRecentlyViewedViewComponent.cs │ │ │ │ └── RecentlyViewedWidgetViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ └── RecentlyViewedWidgetController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── RecentlyViewedWidgetForm.cs │ │ │ │ └── RecentlyViewedWidgetViewComponentVm.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ ├── ProductRecentlyViewed │ │ │ │ │ └── Default.cshtml │ │ │ │ │ └── RecentlyViewedWidget │ │ │ │ │ └── Default.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ ├── Data │ │ │ ├── IRecentlyViewedProductRepository.cs │ │ │ ├── ProductRecentlyViewedCustomModelBuilder.cs │ │ │ └── RecentlyViewedProductRepository.cs │ │ ├── Events │ │ │ └── EntityViewedHandler.cs │ │ ├── Models │ │ │ └── RecentlyViewedProduct.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.ProductRecentlyViewed.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── productrecentlyviewed.module.js │ │ │ └── recently-viewed-widget │ │ │ ├── recently-viewed-widget-form.html │ │ │ ├── recently-viewed-widget-form.js │ │ │ └── recently-viewed-widget-service.js │ ├── SimplCommerce.Module.Reviews │ │ ├── Areas │ │ │ └── Reviews │ │ │ │ ├── Components │ │ │ │ └── ReviewViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── ReplyApiController.cs │ │ │ │ ├── ReplyController.cs │ │ │ │ ├── ReviewApiController.cs │ │ │ │ └── ReviewController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── Reply.cs │ │ │ │ ├── ReplyForm.cs │ │ │ │ ├── ReviewForm.cs │ │ │ │ ├── ReviewItem.cs │ │ │ │ └── ReviewVm.cs │ │ │ │ └── Views │ │ │ │ ├── Reply │ │ │ │ ├── _ReplyForm.cshtml │ │ │ │ └── _ReplyFormSuccess.cshtml │ │ │ │ ├── Review │ │ │ │ ├── List.cshtml │ │ │ │ ├── _ReviewForm.cshtml │ │ │ │ └── _ReviewFormSuccess.cshtml │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── Review │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Data │ │ │ ├── IReplyRepository.cs │ │ │ ├── IReviewRepository.cs │ │ │ ├── ReplyRepository.cs │ │ │ └── ReviewRepository.cs │ │ ├── Models │ │ │ ├── Reply.cs │ │ │ ├── ReplyListItemDto.cs │ │ │ ├── ReplyStatus.cs │ │ │ ├── Review.cs │ │ │ ├── ReviewListItemDto.cs │ │ │ └── ReviewStatus.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.Reviews.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ ├── admin │ │ │ ├── review │ │ │ │ ├── review-list.html │ │ │ │ ├── review-list.js │ │ │ │ ├── review-reply-list.html │ │ │ │ ├── review-reply-list.js │ │ │ │ ├── review-reply-service.js │ │ │ │ ├── review-reply-widget.directive.html │ │ │ │ ├── review-reply-widget.directive.js │ │ │ │ ├── review-service.js │ │ │ │ ├── review-widget.directive.html │ │ │ │ └── review-widget.directive.js │ │ │ └── reviews.module.js │ │ │ ├── list.css │ │ │ └── list.js │ ├── SimplCommerce.Module.SampleData │ │ ├── Areas │ │ │ └── SampleData │ │ │ │ ├── Components │ │ │ │ └── SampleDataFormViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ └── SampleDataController.cs │ │ │ │ ├── ViewModels │ │ │ │ └── SampleDataOption.cs │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── SampleDataForm │ │ │ │ │ └── Default.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ ├── Data │ │ │ ├── ISqlRepository.cs │ │ │ └── SqlRepository.cs │ │ ├── ModuleInitializer.cs │ │ ├── SampleContent │ │ │ ├── Fashion │ │ │ │ ├── Images │ │ │ │ │ ├── 0089c72c-2fbe-48c3-a33f-718ae1eafd8b.jpg │ │ │ │ │ ├── 0199b7af-4d14-4858-a902-62ca8c5e9b6d.jpg │ │ │ │ │ ├── 057afd18-8973-4078-9fd2-7eb0b52d8e72.jpg │ │ │ │ │ ├── 117ed074-628a-4db7-abbb-4a335adb3504.jpg │ │ │ │ │ ├── 1201ba32-984a-48eb-b86a-23d4c8f76d5b.jpg │ │ │ │ │ ├── 1761ffd9-2c53-4a6b-856f-e2f4039d0247.jpg │ │ │ │ │ ├── 1a79b958-50bc-48d8-b3e5-826222949d28.jpg │ │ │ │ │ ├── 1aead9b6-73a8-45c1-a463-7655e9a9b478.jpg │ │ │ │ │ ├── 1b896b5e-f6bf-41ca-89ee-025c6be9e08c.jpg │ │ │ │ │ ├── 1d9d5101-7e0b-4c29-88fe-e54891647672.jpg │ │ │ │ │ ├── 2db2ffbb-46d5-4f3c-8dc0-614e83162a1c.jpg │ │ │ │ │ ├── 2f856ed8-323e-4c26-99d1-cd4ec07f9979.jpg │ │ │ │ │ ├── 37dc2d94-dbac-4112-afbc-2fc88ddca753.jpg │ │ │ │ │ ├── 461a2564-b657-46bb-bcb5-f7deaeb2a0a9.jpg │ │ │ │ │ ├── 4d24a1fd-a362-47e4-9060-011d415398b9.jpg │ │ │ │ │ ├── 532fc844-2c11-494e-a68b-af0be2b9a87f.jpg │ │ │ │ │ ├── 5cf020c2-72b5-407d-836a-ef1a316b741c.jpg │ │ │ │ │ ├── 74552a46-4309-43e1-ad4e-79cd9e778722.jpg │ │ │ │ │ ├── 78f1840e-7a50-49de-9dad-9127ec290dfd.jpg │ │ │ │ │ ├── 83c21bb9-2f0d-446a-bb0c-3b19e6d922aa.jpg │ │ │ │ │ ├── 88604574-f0a3-4982-9b0d-f8a7558dd3ba.jpg │ │ │ │ │ ├── 911207ad-5b45-423f-9575-2185c85261c0.jpg │ │ │ │ │ ├── a5904343-189d-469b-a93b-d553c109b781.jpg │ │ │ │ │ ├── aa5f06ca-9aa9-42b2-a1bc-161d6cf3f174.jpg │ │ │ │ │ ├── b94d02b8-6d3a-4919-b144-c121387a272d.jpg │ │ │ │ │ ├── bc68637c-420f-4951-9130-b9fca36484e6.jpg │ │ │ │ │ ├── bf16c55d-747e-4238-b444-06c3fe0463b2.jpg │ │ │ │ │ ├── bf6461d5-0a9b-4a19-9516-5ca3b5b9da9e.jpg │ │ │ │ │ ├── c27ee7c7-deb3-4697-a6b6-3358d72b556f.jpg │ │ │ │ │ ├── c8756541-d192-48e2-b822-2bf616fb876e.jpg │ │ │ │ │ ├── daa3af7c-452c-4c0f-9c61-aeccf001e825.jpg │ │ │ │ │ ├── dd14f5e8-2e76-4f60-9f58-19652dcb80c5.jpg │ │ │ │ │ ├── de4bdb93-ab9d-4515-b19b-bb55aa4703b3.jpg │ │ │ │ │ ├── df3590c2-a6a0-4813-96db-4a07e6c7f460.jpg │ │ │ │ │ ├── e0a99874-20a8-43b8-9199-b109bb2c3ae5.jpg │ │ │ │ │ ├── ee4b30bf-fd13-47a7-b893-0e6e6b1aed05.jpg │ │ │ │ │ ├── fb26a4f2-0a36-41dd-b0e8-a6c0554d31f8.jpg │ │ │ │ │ └── fd623151-fc8a-464b-8c19-b1350d785bce.jpg │ │ │ │ ├── ResetToSampleData.sql │ │ │ │ ├── ResetToSampleData_MySql.sql │ │ │ │ ├── ResetToSampleData_Postgres.sql │ │ │ │ └── ResetToSampleData_SQLite.sql │ │ │ └── Phones │ │ │ │ ├── Images │ │ │ │ ├── 25d3da45-b57b-40b6-8f41-2fc5170cb6b7.jpg │ │ │ │ ├── 282e5cd3-b664-43dc-ba06-d7e91721c560.jpg │ │ │ │ ├── 284b77c8-2ba8-43e1-826d-7c79c5cf4489.jpg │ │ │ │ ├── 3a3f587c-9c70-4e68-b480-20829a9f3e95.jpg │ │ │ │ ├── 4495b930-a901-44e2-9275-935f7e8ec53c.jpg │ │ │ │ ├── 5887a479-bb96-436f-8414-fa188cdc2aac.jpg │ │ │ │ ├── 68c7ff8f-014e-46c8-8daa-f35c646cc10a.jpg │ │ │ │ ├── 77f5c8cd-2052-4f4c-ac49-70cda3e2eb3c.jpg │ │ │ │ ├── 7d868097-58a5-43f8-a882-6d7872345fe7.jpg │ │ │ │ ├── 7da07700-9a17-498b-ba58-526559343878.jpg │ │ │ │ ├── 81b606ea-0bb0-4cea-a9d7-6406175df9bb.jpg │ │ │ │ ├── 89374e88-b14c-4d38-b5cd-eacdc5ce3015.jpg │ │ │ │ ├── 9874f0f5-46dc-495d-8c61-2c515577aa05.jpg │ │ │ │ ├── a88b4a09-5824-4398-ac08-101d9061f927.jpg │ │ │ │ ├── bb1243c9-63d5-4518-bbd5-cb3e35ade294.jpg │ │ │ │ ├── bffb6f2c-8a3f-4fdd-817d-09a9f18cd190.jpg │ │ │ │ ├── c015d99d-6c3b-4337-9ba7-26822d75a8e2.jpg │ │ │ │ ├── d013921e-5f11-4472-b5ff-7f78d5987a69.jpg │ │ │ │ ├── d539b558-15ea-4317-9a5b-62e4db9a45f5.jpg │ │ │ │ ├── d74fd909-6fe0-4bc3-bf61-86d12dc98a2e.jpg │ │ │ │ ├── e32c3caa-f7bc-4a3c-b970-f62c503b85bc.jpg │ │ │ │ ├── e543ed8e-5feb-4a39-8860-51d94a00ee31.jpg │ │ │ │ ├── ea0af866-a650-4909-877d-00eabbf3d8fd.jpg │ │ │ │ ├── f9a76a94-6e1a-4489-bf7d-3dc6a68a0785.jpg │ │ │ │ ├── fdfd1daf-ec7a-4c6e-83dd-a862eae735db.jpg │ │ │ │ ├── fefe68b9-aee8-4e7d-a49a-17f805555591.jpg │ │ │ │ └── ffc255b3-07c8-4ee5-94e9-d472c6af3f07.jpg │ │ │ │ ├── ResetToSampleData.sql │ │ │ │ ├── ResetToSampleData_MySql.sql │ │ │ │ ├── ResetToSampleData_Postgres.sql │ │ │ │ └── ResetToSampleData_SQLite.sql │ │ ├── Services │ │ │ ├── ISampleDataService.cs │ │ │ └── SampleDataService.cs │ │ ├── SimplCommerce.Module.SampleData.csproj │ │ └── module.json │ ├── SimplCommerce.Module.Search │ │ ├── Areas │ │ │ └── Search │ │ │ │ ├── Components │ │ │ │ └── SearchFormViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── SearchApiController.cs │ │ │ │ └── SearchController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── SearchForm.cs │ │ │ │ └── SearchResult.cs │ │ │ │ └── Views │ │ │ │ ├── Search │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── SearchForm │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Models │ │ │ └── Query.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.Search.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── most-search-keywords.directive.html │ │ │ ├── most-search-keywords.directive.js │ │ │ ├── search-service.js │ │ │ └── search.module.js │ ├── SimplCommerce.Module.Shipments │ │ ├── Areas │ │ │ └── Shipments │ │ │ │ ├── Controllers │ │ │ │ └── ShipmentApiController.cs │ │ │ │ └── ViewModels │ │ │ │ └── ShipmentForm.cs │ │ ├── Data │ │ │ └── ShipmentCustomModelBuilder.cs │ │ ├── Events │ │ │ └── OrderDetailGotHandler.cs │ │ ├── Models │ │ │ ├── Shipment.cs │ │ │ ├── ShipmentItem.cs │ │ │ └── ShipmentStatus.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── IShipmentService.cs │ │ │ ├── ShipmentItemVm.cs │ │ │ └── ShipmentService.cs │ │ ├── SimplCommerce.Module.Shipments.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── shipment.module.js │ │ │ └── shipment │ │ │ ├── shipment-details.html │ │ │ ├── shipment-details.js │ │ │ ├── shipment-form.html │ │ │ ├── shipment-form.js │ │ │ ├── shipment-list-by-order.directive.html │ │ │ ├── shipment-list-by-order.directive.js │ │ │ ├── shipment-list.html │ │ │ ├── shipment-list.js │ │ │ └── shipment-service.js │ ├── SimplCommerce.Module.Shipping │ │ ├── Areas │ │ │ └── Shipping │ │ │ │ ├── Controllers │ │ │ │ └── ShippingProviderApiController.cs │ │ │ │ └── ViewModels │ │ │ │ └── ShippingAddressVm.cs │ │ ├── Data │ │ │ └── ShippingCustomModelBuilder.cs │ │ ├── Models │ │ │ └── ShippingProvider.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.Shipping.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── provider │ │ │ ├── shipping-provider-list.html │ │ │ ├── shipping-provider-list.js │ │ │ └── shipping-provider-service.js │ │ │ └── shipping.module.js │ ├── SimplCommerce.Module.ShippingFree │ │ ├── Data │ │ │ └── ShippingFreeCustomModelBuilder.cs │ │ ├── Models │ │ │ └── FreeShippingSetting.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ └── FreeShippingServiceProvider.cs │ │ ├── SimplCommerce.Module.ShippingFree.csproj │ │ └── module.json │ ├── SimplCommerce.Module.ShippingPrices │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── GetShippingPriceRequest.cs │ │ │ ├── GetShippingPriceResponse.cs │ │ │ ├── IShippingPriceService.cs │ │ │ ├── IShippingPriceServiceProvider.cs │ │ │ ├── ShippingItem.cs │ │ │ ├── ShippingPrice.cs │ │ │ └── ShippingPriceService.cs │ │ ├── SimplCommerce.Module.ShippingPrices.csproj │ │ └── module.json │ ├── SimplCommerce.Module.ShippingTableRate │ │ ├── Areas │ │ │ └── ShippingTableRate │ │ │ │ ├── Controllers │ │ │ │ └── PriceAndDestinationApiController.cs │ │ │ │ └── ViewModels │ │ │ │ └── PriceAndDestinationForm.cs │ │ ├── Data │ │ │ └── ShippingTableRateCustomModelBuilder.cs │ │ ├── Models │ │ │ └── PriceAndDestination.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ └── TableRateShippingServiceProvider.cs │ │ ├── SimplCommerce.Module.ShippingTableRate.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── shipping-tablerate.module.js │ │ │ └── tablerate │ │ │ ├── shipping-tablerate-form.html │ │ │ ├── shipping-tablerate-form.js │ │ │ └── shipping-tablerate-service.js │ ├── SimplCommerce.Module.ShoppingCart │ │ ├── Areas │ │ │ └── ShoppingCart │ │ │ │ ├── Components │ │ │ │ └── CartBadgeViewComponent.cs │ │ │ │ ├── Controllers │ │ │ │ ├── CartApiController.cs │ │ │ │ └── CartController.cs │ │ │ │ ├── ViewModels │ │ │ │ ├── AddToCartModel.cs │ │ │ │ ├── AddToCartResult.cs │ │ │ │ ├── ApplyCouponForm.cs │ │ │ │ ├── CartItemVm.cs │ │ │ │ ├── CartQuantityUpdate.cs │ │ │ │ ├── CartVm.cs │ │ │ │ ├── ProductVariationOption.cs │ │ │ │ ├── ProductVariationOptionVm.cs │ │ │ │ └── SaveOrderNote.cs │ │ │ │ └── Views │ │ │ │ ├── Cart │ │ │ │ ├── AddToCartResult.cshtml │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── CartBadge │ │ │ │ │ └── Default.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ ├── Events │ │ │ └── UserSignedInHandler.cs │ │ ├── Models │ │ │ ├── Cart.cs │ │ │ └── CartItem.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── CartService.cs │ │ │ └── ICartService.cs │ │ ├── SimplCommerce.Module.ShoppingCart.csproj │ │ ├── module.json │ │ └── wwwroot │ │ │ ├── add-to-cart.js │ │ │ ├── shoppingcart-list.js │ │ │ └── shoppingcart-service.js │ ├── SimplCommerce.Module.SignalR │ │ ├── Hubs │ │ │ ├── CommonHub.cs │ │ │ ├── HubBase.cs │ │ │ └── OnlineClientHubBase.cs │ │ ├── ModuleInitializer.cs │ │ ├── RealTime │ │ │ ├── IOnlineClient.cs │ │ │ ├── IOnlineClientManager.cs │ │ │ ├── OnlineClient.cs │ │ │ ├── OnlineClientEventArgs.cs │ │ │ ├── OnlineClientManager.cs │ │ │ └── OnlineUserEventArgs.cs │ │ ├── SimplCommerce.Module.SignalR.csproj │ │ └── module.json │ ├── SimplCommerce.Module.StorageAmazonS3 │ │ ├── ModuleInitializer.cs │ │ ├── S3StorageService.cs │ │ ├── SimplCommerce.Module.StorageAmazonS3.csproj │ │ └── module.json │ ├── SimplCommerce.Module.StorageAzureBlob │ │ ├── AzureBlobStorageService.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.StorageAzureBlob.csproj │ │ └── module.json │ ├── SimplCommerce.Module.StorageLocal │ │ ├── LocalStorageService.cs │ │ ├── ModuleInitializer.cs │ │ ├── SimplCommerce.Module.StorageLocal.csproj │ │ └── module.json │ ├── SimplCommerce.Module.Tax │ │ ├── Areas │ │ │ └── Tax │ │ │ │ ├── Controllers │ │ │ │ ├── TaxClassApiController.cs │ │ │ │ └── TaxRateApiController.cs │ │ │ │ └── ViewModels │ │ │ │ ├── TaxClassForm.cs │ │ │ │ ├── TaxRateForm.cs │ │ │ │ ├── TaxRateImport.cs │ │ │ │ └── TaxRateImportForm.cs │ │ ├── Data │ │ │ └── TaxCustomModelBuilder.cs │ │ ├── Models │ │ │ ├── TaxClass.cs │ │ │ └── TaxRate.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── ITaxService.cs │ │ │ └── TaxService.cs │ │ ├── SimplCommerce.Module.Tax.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── tax-class │ │ │ ├── tax-class-form.html │ │ │ ├── tax-class-form.js │ │ │ ├── tax-class-list.html │ │ │ ├── tax-class-list.js │ │ │ └── tax-class-service.js │ │ │ ├── tax-rate │ │ │ ├── tax-rate-form.html │ │ │ ├── tax-rate-form.js │ │ │ ├── tax-rate-import.html │ │ │ ├── tax-rate-import.js │ │ │ ├── tax-rate-list.html │ │ │ ├── tax-rate-list.js │ │ │ └── tax-rate-service.js │ │ │ └── tax.module.js │ ├── SimplCommerce.Module.Vendors │ │ ├── Areas │ │ │ └── Vendors │ │ │ │ ├── Controllers │ │ │ │ └── VendorApiController.cs │ │ │ │ └── ViewModels │ │ │ │ ├── VendorForm.cs │ │ │ │ └── VendorManager.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ │ ├── IVendorService.cs │ │ │ └── VendorService.cs │ │ ├── SimplCommerce.Module.Vendors.csproj │ │ ├── bundleconfig.json │ │ ├── module.json │ │ └── wwwroot │ │ │ └── admin │ │ │ ├── vendors.module.js │ │ │ └── vendors │ │ │ ├── vendor-form.html │ │ │ ├── vendor-form.js │ │ │ ├── vendor-list.html │ │ │ ├── vendor-list.js │ │ │ └── vendor-service.js │ └── SimplCommerce.Module.WishList │ │ ├── Areas │ │ └── WishList │ │ │ ├── Controllers │ │ │ └── WishListController.cs │ │ │ ├── ViewModels │ │ │ ├── AddToWishList.cs │ │ │ ├── AddToWishListResult.cs │ │ │ ├── ShareWishListForm.cs │ │ │ ├── UpdateWishListItem.cs │ │ │ ├── WishListItemVm.cs │ │ │ └── WishListVm.cs │ │ │ └── Views │ │ │ ├── WishList │ │ │ ├── AddToWishListResult.cshtml │ │ │ ├── PrivateList.cshtml │ │ │ ├── PublicList.cshtml │ │ │ ├── Share.cshtml │ │ │ └── UpdateItemResult.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Models │ │ ├── WishList.cs │ │ └── WishListItem.cs │ │ ├── ModuleInitializer.cs │ │ ├── Services │ │ ├── IWishListService.cs │ │ └── WishListService.cs │ │ ├── SimplCommerce.Module.WishList.csproj │ │ ├── module.json │ │ └── wwwroot │ │ ├── private-list.css │ │ ├── public-list.css │ │ └── wishlist.js ├── SimplCommerce.Infrastructure │ ├── Data │ │ ├── ICustomModelBuilder.cs │ │ ├── IRepository.cs │ │ └── IRepositoryWithTypedId.cs │ ├── Extensions │ │ ├── DictionaryExtensions.cs │ │ ├── HttpClientExtensions.cs │ │ ├── JsonExtensions.cs │ │ └── QueryableExtensions.cs │ ├── GlobalConfiguration.cs │ ├── Helpers │ │ ├── CsvConverter.cs │ │ ├── CurrencyHelper.cs │ │ ├── EnumHelper.cs │ │ ├── ReflectionHelper.cs │ │ ├── StringHelper.cs │ │ └── TypeHelper.cs │ ├── Localization │ │ ├── Culture.cs │ │ ├── LanguageDirection.cs │ │ ├── LocalizedContentProperty.cs │ │ └── Resource.cs │ ├── Models │ │ ├── EntityBase.cs │ │ ├── EntityBaseWithTypedId.cs │ │ ├── ExtendableObjectExtensions.cs │ │ ├── IEntityWithTypedId.cs │ │ ├── IExtendableObject.cs │ │ └── ValidatableObject.cs │ ├── Modules │ │ ├── IModuleConfigurationManager.cs │ │ ├── IModuleInitializer.cs │ │ ├── MissingModuleManifestException.cs │ │ ├── ModuleConfigurationManager.cs │ │ └── ModuleInfo.cs │ ├── Result.cs │ ├── ResultOfT.cs │ ├── SimplCommerce.Infrastructure.csproj │ ├── Tasks │ │ └── Scheduling │ │ │ ├── IScheduledTask.cs │ │ │ ├── SchedulerBackgroundService.cs │ │ │ ├── SchedulerTaskWrapper.cs │ │ │ └── SchedulerTasksExtensions.cs │ ├── ValidationException.cs │ └── Web │ │ ├── CookieOnlyAutoValidateAntiforgeryTokenAuthorizationFilter.cs │ │ ├── HttpRequestExtentions.cs │ │ ├── IRazorViewRenderer.cs │ │ ├── ModelBinders │ │ ├── InvariantDecimalModelBinder.cs │ │ └── InvariantDecimalModelBinderProvider.cs │ │ ├── RazorViewToStringRenderer.cs │ │ ├── SmartTable │ │ ├── Pagination.cs │ │ ├── Search.cs │ │ ├── SmartTableExtension.cs │ │ ├── SmartTableParam.cs │ │ ├── SmartTableResult.cs │ │ └── Sort.cs │ │ ├── ThemeableViewLocationExpander.cs │ │ └── ViewComponentExtensions.cs └── SimplCommerce.WebHost │ ├── Extensions │ ├── ApplicationBuilderExtensions.cs │ └── ServiceCollectionExtensions.cs │ ├── IdentityServer │ ├── IdentityServerConfig.cs │ └── SimplProfileService.cs │ ├── MigrationSimplDbContextFactory.cs │ ├── Migrations │ ├── 20190212090153_SimplCommerce_v1_0_0.Designer.cs │ ├── 20190212090153_SimplCommerce_v1_0_0.cs │ ├── 20190224050227_AddedCartLockOnCheckout.Designer.cs │ ├── 20190224050227_AddedCartLockOnCheckout.cs │ ├── 20190302122027_MomoPayment.Designer.cs │ ├── 20190302122027_MomoPayment.cs │ ├── 20190314044223_AddedNganLuongPayment.Designer.cs │ ├── 20190314044223_AddedNganLuongPayment.cs │ ├── 20190710165614_DefaultCultureConfiguration.Designer.cs │ ├── 20190710165614_DefaultCultureConfiguration.cs │ ├── 20190726221912_AddedCurrencySetting.Designer.cs │ ├── 20190726221912_AddedCurrencySetting.cs │ ├── 20190727083300_AddedContentLocalization.Designer.cs │ ├── 20190727083300_AddedContentLocalization.cs │ ├── 20190801065533_AddedCashfreePayment.Designer.cs │ ├── 20190801065533_AddedCashfreePayment.cs │ ├── 20190803175214_AddedAssetBundlingConfig.Designer.cs │ ├── 20190803175214_AddedAssetBundlingConfig.cs │ ├── 20210725112635_init.Designer.cs │ ├── 20210725112635_init.cs │ └── SimplDbContextModelSnapshot.cs │ ├── Modules │ └── .gitignore │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SimplCommerce.WebHost.csproj │ ├── Startup.cs │ ├── Temps │ └── .gitignore │ ├── Themes │ ├── CozaStore │ │ ├── Areas │ │ │ ├── Catalog │ │ │ │ └── Views │ │ │ │ │ ├── Category │ │ │ │ │ └── CategoryDetail.cshtml │ │ │ │ │ ├── Product │ │ │ │ │ └── ProductDetail.cshtml │ │ │ │ │ ├── Shared │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── CategoryBreadcrumb │ │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ │ ├── CategoryMenu │ │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ │ ├── CategoryWidget │ │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ │ ├── ProductWidget │ │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ │ └── SimpleProductWidget │ │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ └── _ProductThumbnail.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── Cms │ │ │ │ └── Views │ │ │ │ │ ├── Shared │ │ │ │ │ └── Components │ │ │ │ │ │ ├── CarouselWidget │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ │ └── Menu │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ └── _ViewImports.cshtml │ │ │ ├── Core │ │ │ │ └── Views │ │ │ │ │ ├── Home │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── ProductRecentlyViewed │ │ │ │ └── Views │ │ │ │ │ ├── Shared │ │ │ │ │ └── Components │ │ │ │ │ │ └── ProductRecentlyViewed │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ └── _ViewImports.cshtml │ │ │ ├── Search │ │ │ │ └── Views │ │ │ │ │ ├── Shared │ │ │ │ │ └── Components │ │ │ │ │ │ └── SearchForm │ │ │ │ │ │ └── Default.cshtml │ │ │ │ │ └── _ViewImports.cshtml │ │ │ └── ShoppingCart │ │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── Components │ │ │ │ │ └── CartBadge │ │ │ │ │ └── Default.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ ├── Views │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ └── _SelectLanguagePartial.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── theme.json │ └── SampleTheme │ │ ├── Areas │ │ ├── Catalog │ │ │ └── Views │ │ │ │ ├── Shared │ │ │ │ └── _ProductThumbnail.cshtml │ │ │ │ └── _ViewImports.cshtml │ │ └── Core │ │ │ └── Views │ │ │ ├── Home │ │ │ └── Index.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Views │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ └── theme.json │ ├── Views │ ├── Shared │ │ ├── 404.cshtml │ │ ├── Error.cshtml │ │ ├── _AccountMenu.cshtml │ │ ├── _AnalyticsScript.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ ├── _SelectLanguagePartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ └── _ViewImports.cshtml │ ├── appsettings.Development.json │ ├── appsettings.docker.json │ ├── appsettings.json │ ├── bundleconfig.json │ ├── libman.json │ ├── modules.json │ ├── tempkey.rsa │ └── wwwroot │ ├── favicon.ico │ ├── lib │ ├── angular-animate │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ └── angular-animate.min.js.map │ ├── angular-aria │ │ ├── angular-aria.js │ │ ├── angular-aria.min.js │ │ └── angular-aria.min.js.map │ ├── angular-bootstrap-colorpicker │ │ ├── css │ │ │ ├── colorpicker.css │ │ │ └── colorpicker.min.css │ │ ├── img │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ └── js │ │ │ ├── bootstrap-colorpicker-module.js │ │ │ └── bootstrap-colorpicker-module.min.js │ ├── angular-bootstrap │ │ ├── ui-bootstrap-csp.css │ │ ├── ui-bootstrap-tpls.js │ │ ├── ui-bootstrap-tpls.min.js │ │ ├── ui-bootstrap.js │ │ └── ui-bootstrap.min.js │ ├── angular-material │ │ ├── angular-material-mocks.js │ │ ├── angular-material.css │ │ ├── angular-material.js │ │ ├── angular-material.min.css │ │ └── angular-material.min.js │ ├── angular-messages │ │ ├── angular-messages.js │ │ ├── angular-messages.min.js │ │ └── angular-messages.min.js.map │ ├── angular-smart-table │ │ ├── dist │ │ │ ├── smart-table.js │ │ │ ├── smart-table.min.js │ │ │ └── smart-table.min.js.map │ │ ├── smart-table.js │ │ └── smart-table.min.js │ ├── angular-summernote │ │ ├── angular-summernote.js │ │ └── angular-summernote.min.js │ ├── angular-ui-router │ │ ├── angular-ui-router.js │ │ └── angular-ui-router.min.js │ ├── angular-ui-tree │ │ ├── angular-ui-tree.css │ │ ├── angular-ui-tree.js │ │ ├── angular-ui-tree.min.css │ │ └── angular-ui-tree.min.js │ ├── angular │ │ ├── angular.js │ │ └── angular.min.js │ ├── bootbox │ │ ├── bootbox.js │ │ └── bootbox.min.js │ ├── bootstrap-star-rating │ │ ├── css │ │ │ ├── star-rating.css │ │ │ └── star-rating.min.css │ │ ├── img │ │ │ └── loading.gif │ │ └── js │ │ │ ├── locales │ │ │ ├── LANG.js │ │ │ ├── ar.js │ │ │ ├── de.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fr.js │ │ │ ├── it.js │ │ │ ├── ko.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── tr.js │ │ │ ├── ua.js │ │ │ ├── vi-vn.js │ │ │ └── zh.js │ │ │ ├── star-rating.js │ │ │ └── star-rating.min.js │ ├── bootstrap-ui-datetime-picker │ │ ├── datetime-picker.js │ │ ├── datetime-picker.min.js │ │ └── datetime-picker.tpls.js │ ├── bootstrap │ │ └── 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 │ ├── bootstrap4 │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── flags │ │ ├── blank.gif │ │ ├── flags.css │ │ ├── flags.min.css │ │ └── flags.png │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── i18n │ │ ├── angular-locale_ar-tn.js │ │ ├── angular-locale_ar.js │ │ ├── angular-locale_en-us.js │ │ ├── angular-locale_en.js │ │ ├── angular-locale_fr-fr.js │ │ ├── angular-locale_fr.js │ │ ├── angular-locale_ko-kr.js │ │ ├── angular-locale_ko.js │ │ ├── angular-locale_pt-br.js │ │ ├── angular-locale_pt.js │ │ ├── angular-locale_ru-ru.js │ │ ├── angular-locale_ru.js │ │ ├── angular-locale_uk-ua.js │ │ ├── angular-locale_uk.js │ │ ├── angular-locale_vi-vn.js │ │ └── angular-locale_vi.js │ ├── jquery-validation-unobtrusive │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ ├── matchheight │ │ ├── jquery.matchHeight-min.js │ │ └── jquery.matchHeight.js │ ├── multi-dropdown-menu │ │ ├── css │ │ │ └── bootstrap-4-navbar.css │ │ └── js │ │ │ └── bootstrap-4-navbar.js │ ├── ng-file-upload │ │ └── dist │ │ │ ├── ng-file-upload.js │ │ │ └── ng-file-upload.min.js │ ├── nouislider │ │ └── distribute │ │ │ ├── nouislider.js │ │ │ ├── nouislider.min.css │ │ │ └── nouislider.min.js │ ├── pagination │ │ ├── README.md │ │ ├── dirPagination.js │ │ ├── dirPagination.spec.js │ │ ├── dirPagination.tpl.html │ │ └── testTemplate.tpl.html │ ├── signalr │ │ └── dist │ │ │ └── browser │ │ │ ├── signalr.js │ │ │ └── signalr.min.js │ ├── smoothproducts │ │ ├── css │ │ │ └── smoothproducts.css │ │ └── js │ │ │ ├── smoothproducts.js │ │ │ └── smoothproducts.min.js │ ├── summernote │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-TW.js │ │ │ └── summernote-zh-TW.min.js │ │ ├── plugin │ │ │ ├── databasic │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ ├── summernote-ext-databasic.js │ │ │ │ ├── summernote-ext-databasic.min.css │ │ │ │ └── summernote-ext-databasic.min.js │ │ │ ├── hello │ │ │ │ ├── summernote-ext-hello.js │ │ │ │ └── summernote-ext-hello.min.js │ │ │ └── specialchars │ │ │ │ ├── summernote-ext-specialchars.js │ │ │ │ └── summernote-ext-specialchars.min.js │ │ ├── summernote.css │ │ ├── summernote.js │ │ └── summernote.min.js │ ├── toastr │ │ └── build │ │ │ ├── toastr.css │ │ │ ├── toastr.js.map │ │ │ ├── toastr.min.css │ │ │ └── toastr.min.js │ └── wnumb │ │ └── wNumb.js │ ├── libs.min.css │ ├── robots.txt │ ├── themes │ ├── CozaStore │ │ ├── CozaStore.png │ │ ├── css │ │ │ ├── flags.css │ │ │ ├── flags.min.css │ │ │ ├── main.css │ │ │ ├── simpl.css │ │ │ └── util.css │ │ ├── fonts │ │ │ ├── Montserrat │ │ │ │ ├── Montserrat-Black.ttf │ │ │ │ ├── Montserrat-BlackItalic.ttf │ │ │ │ ├── Montserrat-Bold.ttf │ │ │ │ ├── Montserrat-BoldItalic.ttf │ │ │ │ ├── Montserrat-ExtraBold.ttf │ │ │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ │ │ ├── Montserrat-ExtraLight.ttf │ │ │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ │ │ ├── Montserrat-Italic.ttf │ │ │ │ ├── Montserrat-Light.ttf │ │ │ │ ├── Montserrat-LightItalic.ttf │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── Montserrat-MediumItalic.ttf │ │ │ │ ├── Montserrat-Regular.ttf │ │ │ │ ├── Montserrat-SemiBold.ttf │ │ │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ │ │ ├── Montserrat-Thin.ttf │ │ │ │ ├── Montserrat-ThinItalic.ttf │ │ │ │ └── OFL.txt │ │ │ ├── PlayfairDisplay │ │ │ │ ├── OFL.txt │ │ │ │ ├── PlayfairDisplay-Black.ttf │ │ │ │ ├── PlayfairDisplay-BlackItalic.ttf │ │ │ │ ├── PlayfairDisplay-Bold.ttf │ │ │ │ ├── PlayfairDisplay-BoldItalic.ttf │ │ │ │ ├── PlayfairDisplay-Italic.ttf │ │ │ │ └── PlayfairDisplay-Regular.ttf │ │ │ ├── Poppins │ │ │ │ ├── Poppins-Black.ttf │ │ │ │ ├── Poppins-BlackItalic.ttf │ │ │ │ ├── Poppins-Bold.ttf │ │ │ │ ├── Poppins-BoldItalic.ttf │ │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ │ ├── Poppins-Italic.ttf │ │ │ │ ├── Poppins-Light.ttf │ │ │ │ ├── Poppins-LightItalic.ttf │ │ │ │ ├── Poppins-Medium.ttf │ │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ │ ├── Poppins-Regular.ttf │ │ │ │ ├── Poppins-SemiBold.ttf │ │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ │ ├── Poppins-Thin.ttf │ │ │ │ └── Poppins-ThinItalic.ttf │ │ │ ├── font-awesome-4.7.0 │ │ │ │ ├── HELP-US-OUT.txt │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── less │ │ │ │ │ ├── animated.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── screen-reader.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ └── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── iconic │ │ │ │ ├── css │ │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ │ └── material-design-iconic-font.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ │ └── Material-Design-Iconic-Font.woff2 │ │ │ └── linearicons-v1.0.0 │ │ │ │ ├── WebFont │ │ │ │ ├── Linearicons-Free.eot │ │ │ │ ├── Linearicons-Free.svg │ │ │ │ ├── Linearicons-Free.ttf │ │ │ │ ├── Linearicons-Free.woff │ │ │ │ └── Linearicons-Free.woff2 │ │ │ │ └── icon-font.min.css │ │ ├── images │ │ │ └── icons │ │ │ │ ├── blank.gif │ │ │ │ ├── favicon.png │ │ │ │ ├── flags.png │ │ │ │ ├── icon-close.png │ │ │ │ ├── icon-close2.png │ │ │ │ ├── icon-email.png │ │ │ │ ├── icon-heart-01.png │ │ │ │ ├── icon-heart-02.png │ │ │ │ ├── icon-next.png │ │ │ │ ├── icon-pay-01.png │ │ │ │ ├── icon-pay-02.png │ │ │ │ ├── icon-pay-03.png │ │ │ │ ├── icon-pay-04.png │ │ │ │ ├── icon-pay-05.png │ │ │ │ ├── icon-prev.png │ │ │ │ ├── logo-01.png │ │ │ │ ├── logo-02.png │ │ │ │ └── pin.png │ │ ├── js │ │ │ ├── cozastore.js │ │ │ └── slick-custom.js │ │ ├── site.min.css │ │ └── vendor │ │ │ ├── animate │ │ │ └── animate.css │ │ │ ├── animsition │ │ │ ├── css │ │ │ │ ├── animsition.css │ │ │ │ └── animsition.min.css │ │ │ └── js │ │ │ │ ├── animsition.js │ │ │ │ └── animsition.min.js │ │ │ ├── css-hamburgers │ │ │ ├── hamburgers.css │ │ │ └── hamburgers.min.css │ │ │ └── slick │ │ │ ├── ajax-loader.gif │ │ │ ├── config.rb │ │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.svg │ │ │ ├── slick.ttf │ │ │ └── slick.woff │ │ │ ├── slick-theme.css │ │ │ ├── slick-theme.less │ │ │ ├── slick-theme.scss │ │ │ ├── slick.css │ │ │ ├── slick.js │ │ │ ├── slick.less │ │ │ ├── slick.min.js │ │ │ └── slick.scss │ ├── SampleTheme │ │ ├── SampleTheme.png │ │ └── site.css │ └── generic-theme.png │ └── user-content │ ├── .gitignore │ └── no-image.png └── test ├── SimplCommerce.Infrastructure.Tests ├── EnumHelperTests.cs ├── SimplCommerce.Infrastructure.Tests.csproj └── StringHelperTests.cs ├── SimplCommerce.Module.Cms.Tests ├── Components │ └── CarouselWidgetViewComponentTests.cs ├── Controllers │ └── PageControllerTests.cs └── SimplCommerce.Module.Cms.Tests.csproj ├── SimplCommerce.Module.Core.Tests ├── Components │ └── DefaultShippingAddressViewComponentTests.cs └── SimplCommerce.Module.Core.Tests.csproj ├── SimplCommerce.Module.Inventory.Tests ├── SimplCommerce.Module.Inventory.Tests.csproj └── StockServiceTests.cs └── SimplCommerce.Module.Pricing.Tests ├── CouponServiceTest.cs └── SimplCommerce.Module.Pricing.Tests.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: simplcommerce 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.SimplCommerce/.idea/.name: -------------------------------------------------------------------------------- 1 | SimplCommerce -------------------------------------------------------------------------------- /.idea/.idea.SimplCommerce/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.idea/.idea.SimplCommerce/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.SimplCommerce/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.idea/.idea.SimplCommerce/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.SimplCommerce/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.idea/.idea.SimplCommerce/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /.idea/.idea.SimplCommerce/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.idea/.idea.SimplCommerce/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.SimplCommerce/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.idea/.idea.SimplCommerce/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Delete-BIN-OBJ-Folders.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/Delete-BIN-OBJ-Folders.bat -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/Dockerfile-sqlite -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/README.md -------------------------------------------------------------------------------- /Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/Settings.StyleCop -------------------------------------------------------------------------------- /SimplCommerce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/SimplCommerce.sln -------------------------------------------------------------------------------- /aws-beanstalk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/aws-beanstalk/Dockerfile -------------------------------------------------------------------------------- /aws-beanstalk/ebapp/.ebextensions/01_nginx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/aws-beanstalk/ebapp/.ebextensions/01_nginx.config -------------------------------------------------------------------------------- /aws-beanstalk/ebapp/Dockerrun.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/aws-beanstalk/ebapp/Dockerrun.aws.json -------------------------------------------------------------------------------- /aws-beanstalk/simplcommerce-eb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/aws-beanstalk/simplcommerce-eb.zip -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/global.json -------------------------------------------------------------------------------- /jshint.option.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/jshint.option.xml -------------------------------------------------------------------------------- /miscellaneous/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/miscellaneous/Icon.png -------------------------------------------------------------------------------- /miscellaneous/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/miscellaneous/Icon.psd -------------------------------------------------------------------------------- /miscellaneous/Logo_SimplCommerce.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/miscellaneous/Logo_SimplCommerce.psd -------------------------------------------------------------------------------- /modular-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/modular-architecture.png -------------------------------------------------------------------------------- /run-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/run-tests.ps1 -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/run-tests.sh -------------------------------------------------------------------------------- /simpl-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/simpl-build.sh -------------------------------------------------------------------------------- /src/Database/Countries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/Countries.sql -------------------------------------------------------------------------------- /src/Database/MySql/StaticData-GB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/MySql/StaticData-GB.sql -------------------------------------------------------------------------------- /src/Database/StaticData-BR-Address.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-BR-Address.sql -------------------------------------------------------------------------------- /src/Database/StaticData-BR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-BR.sql -------------------------------------------------------------------------------- /src/Database/StaticData-CN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-CN.sql -------------------------------------------------------------------------------- /src/Database/StaticData-DE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-DE.sql -------------------------------------------------------------------------------- /src/Database/StaticData-DefaultLocalization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-DefaultLocalization.sql -------------------------------------------------------------------------------- /src/Database/StaticData-ES.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-ES.sql -------------------------------------------------------------------------------- /src/Database/StaticData-FR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-FR.sql -------------------------------------------------------------------------------- /src/Database/StaticData-GB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-GB.sql -------------------------------------------------------------------------------- /src/Database/StaticData-IR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-IR.sql -------------------------------------------------------------------------------- /src/Database/StaticData-KR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-KR.sql -------------------------------------------------------------------------------- /src/Database/StaticData-RU.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-RU.sql -------------------------------------------------------------------------------- /src/Database/StaticData-TN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-TN.sql -------------------------------------------------------------------------------- /src/Database/StaticData-TR.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-TR.sql -------------------------------------------------------------------------------- /src/Database/StaticData-UA.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-UA.sql -------------------------------------------------------------------------------- /src/Database/StaticData-US.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-US.sql -------------------------------------------------------------------------------- /src/Database/StaticData-VN.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Database/StaticData-VN.sql -------------------------------------------------------------------------------- /src/Modules/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/Directory.Build.props -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/Data/ActivityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/Data/ActivityRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/Data/IActivityTypeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/Data/IActivityTypeRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/Events/EntityViewedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/Events/EntityViewedHandler.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/Models/Activity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/Models/Activity.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/Models/ActivityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/Models/ActivityType.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/Models/MostViewEntityDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/Models/MostViewEntityDto.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ActivityLog/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ActivityLog/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Areas/Catalog/ViewModels/BrandVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Areas/Catalog/ViewModels/BrandVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Data/CatalogCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Data/CatalogCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/Brand.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/CalculatedProductPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/CalculatedProductPrice.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/Category.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/Product.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductAttribute.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductAttributeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductAttributeGroup.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductAttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductAttributeValue.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductCategory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductLink.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductLinkType.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductMedia.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductOption.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductOptionCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductOptionCombination.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductOptionValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductOptionValue.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductPriceHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductPriceHistory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Models/ProductTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Models/ProductTemplate.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/BrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/BrandService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/CategoryService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/IBrandService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/ICategoryService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/IProductPricingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/IProductPricingService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/IProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/IProductService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/ProductPricingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/ProductPricingService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/Services/ProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/Services/ProductService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/SimplCommerce.Module.Catalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/SimplCommerce.Module.Catalog.csproj -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-form.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-form.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-list.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/brand/brand-list.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/catalog.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/admin/catalog.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-detail.css -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-detail.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-filter.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Catalog/wwwroot/product-overview.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Controllers/PageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Controllers/PageController.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/HtmlWidgetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/HtmlWidgetForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/MenuForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/MenuForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/MenuItemForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/MenuItemForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/MenuItemVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/MenuItemVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/PageForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/PageForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/PageVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/ViewModels/PageVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Views/Page/PageDetail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Views/Page/PageDetail.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Areas/Cms/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Data/CmsCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Data/CmsCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Events/EntityDeletingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Events/EntityDeletingHandler.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Models/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Models/Menu.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Models/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Models/MenuItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Models/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Models/Page.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Services/IPageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Services/IPageService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/Services/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/Services/PageService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/SimplCommerce.Module.Cms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/SimplCommerce.Module.Cms.csproj -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/cms.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/cms.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-form-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-form-create.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-form.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-form.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-list.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-list.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/menu/menu-service.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-form.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-form.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-list.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-list.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Cms/wwwroot/admin/page/page-service.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/Data/CommentModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/Data/CommentModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/Data/CommentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/Data/CommentRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/Data/ICommentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/Data/ICommentRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/Models/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/Models/Comment.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/Models/CommentListItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/Models/CommentListItemDto.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/Models/CommentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/Models/CommentStatus.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/wwwroot/admin/comments.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/wwwroot/admin/comments.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/wwwroot/comment-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/wwwroot/comment-service.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/wwwroot/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/wwwroot/comment.css -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Comments/wwwroot/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Comments/wwwroot/comment.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/Areas/Contacts/Views/Contact/SubmitContactResult.cshtml: -------------------------------------------------------------------------------- 1 |

@Localizer["We will contact with you soon..."]

-------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/Data/ContactCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/Data/ContactCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/Models/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/Models/Contact.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/Models/ContactArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/Models/ContactArea.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/wwwroot/admin/contacts.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/wwwroot/admin/contacts.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/wwwroot/admin/contacts/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/wwwroot/admin/contacts/contact.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Contacts/wwwroot/init-google-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Contacts/wwwroot/init-google-map.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/AppSettingVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/AppSettingVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/CountryForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/CountryForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/ProjectItemVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/ProjectItemVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/ThemeListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/ThemeListItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/UserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/ViewModels/UserForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Areas/Core/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Data/CoreCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Data/CoreCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Data/CoreSeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Data/CoreSeedData.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Data/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Data/Repository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Data/RepositoryWithTypedId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Data/RepositoryWithTypedId.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Data/SimplDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Data/SimplDbContext.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Events/EntityDeleting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Events/EntityDeleting.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Events/EntityViewed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Events/EntityViewed.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Events/ReviewSummaryChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Events/ReviewSummaryChanged.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Events/UserSignedIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Events/UserSignedIn.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/EFConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/EFConfigProvider.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/EFConfigSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/EFConfigSource.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/EFConfigurationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/EFConfigurationDbContext.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/IWorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/IWorkContext.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/SimplRoleStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/SimplRoleStore.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/SimplSignInManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/SimplSignInManager.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/SimplUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/SimplUserStore.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Extensions/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Extensions/WorkContext.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Address.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/AddressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/AddressType.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/AppSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/AppSetting.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Content.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Country.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/CustomerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/CustomerGroup.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/CustomerGroupUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/CustomerGroupUser.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/District.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/District.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Entity.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/EntityType.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Media.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Media.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/MediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/MediaType.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Role.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/SimplConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/SimplConstants.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/StateOrProvince.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/StateOrProvince.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/ThemeManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/ThemeManifest.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/User.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/UserAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/UserAddress.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/UserRole.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Vendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Vendor.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/Widget.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/WidgetInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/WidgetInstance.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/WidgetZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/WidgetZone.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Models/WidgetZoneIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Models/WidgetZoneIds.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/CurrencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/CurrencyService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/EntityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/EntityService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/ICurrencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/ICurrencyService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/IEmailSender.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/IEntityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/IEntityService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/IMediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/IMediaService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/IPdfConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/IPdfConverter.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/ISettingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/ISettingService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/ISmsSender.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/IStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/IStorageService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/IThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/IThemeService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/IWidgetInstanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/IWidgetInstanceService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/MediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/MediaService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/SettingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/SettingService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/SmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/SmsSender.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/ThemeService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/Services/WidgetInstanceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/Services/WidgetInstanceService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/SimplCommerce.Module.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/SimplCommerce.Module.Core.csproj -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/Logo_SimplCommerce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/Logo_SimplCommerce.png -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/admin-app-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/admin-app-config.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/admin-core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/admin-core.css -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/common.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/exception.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/logger.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/simplUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/simplUtil.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/slugify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/slugify.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/st-date-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/common/st-date-range.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/core.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/themes/theme-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/themes/theme-details.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/themes/theme-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/themes/theme-list.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-form.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-form.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-list.html -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-list.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/admin/user/user-service.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/main.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/site.css -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/site.min.css -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Core/wwwroot/user-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Core/wwwroot/user-address.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.DinkToPdf/DinkToPdfConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.DinkToPdf/DinkToPdfConverter.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.DinkToPdf/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.DinkToPdf/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.DinkToPdf/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.DinkToPdf/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.EmailSenderSendgrid/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.EmailSenderSendgrid/EmailSender.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.EmailSenderSendgrid/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.EmailSenderSendgrid/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.EmailSenderSendgrid/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.EmailSenderSendgrid/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.EmailSenderSmtp/EmailConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.EmailSenderSmtp/EmailConfig.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.EmailSenderSmtp/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.EmailSenderSmtp/EmailSender.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.EmailSenderSmtp/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.EmailSenderSmtp/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.EmailSenderSmtp/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.EmailSenderSmtp/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.HangfireJobs/About.md: -------------------------------------------------------------------------------- 1 | TODO:Hangfire.Redis Integration -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.HangfireJobs/Models/BackgroundJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.HangfireJobs/Models/BackgroundJob.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.HangfireJobs/Models/CommonCrons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.HangfireJobs/Models/CommonCrons.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.HangfireJobs/Models/IBackgroundJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.HangfireJobs/Models/IBackgroundJob.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.HangfireJobs/Models/ScheduledJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.HangfireJobs/Models/ScheduledJob.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.HangfireJobs/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.HangfireJobs/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.HangfireJobs/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.HangfireJobs/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/Models/Stock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/Models/Stock.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/Models/StockHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/Models/StockHistory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/Models/Warehouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/Models/Warehouse.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/Services/IStockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/Services/IStockService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/Services/StockService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/Services/StockService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/Services/StockUpdateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/Services/StockUpdateRequest.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Inventory/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Inventory/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Localization/EFStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Localization/EFStringLocalizer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Localization/EFStringLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Localization/EFStringLocalizerFactory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Localization/EFStringLocalizerOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Localization/EFStringLocalizerOfT.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Localization/EfRequestCultureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Localization/EfRequestCultureProvider.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Localization/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Localization/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Localization/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Localization/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Localization/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Localization/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Areas/News/ViewModels/NewsItemVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Areas/News/ViewModels/NewsItemVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Areas/News/ViewModels/NewsVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Areas/News/ViewModels/NewsVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Areas/News/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Areas/News/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Data/NewsCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Data/NewsCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Models/NewsCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Models/NewsCategory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Models/NewsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Models/NewsItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Models/NewsItemCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Models/NewsItemCategory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Services/INewsCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Services/INewsCategoryService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Services/INewsItemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Services/INewsItemService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Services/NewsCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Services/NewsCategoryService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/Services/NewsItemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/Services/NewsItemService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/SimplCommerce.Module.News.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/SimplCommerce.Module.News.csproj -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.News/wwwroot/admin/news.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.News/wwwroot/admin/news.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/Helpers/EntityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/Helpers/EntityHelper.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/Models/EntityIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/Models/EntityIdentifier.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/Models/NotificationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/Models/NotificationData.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/Models/UserNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/Models/UserNotification.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/NotificationDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/NotificationDefinitions.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/Notifiers/ITestNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/Notifiers/ITestNotifier.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/Notifiers/TestNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/Notifiers/TestNotifier.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/SettingDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/SettingDefinitions.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Notifications/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Notifications/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Data/OrderCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Data/OrderCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Events/AfterOrderCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Events/AfterOrderCreated.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Events/OrderChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Events/OrderChanged.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Events/OrderCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Events/OrderCreated.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Events/OrderDetailGot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Events/OrderDetailGot.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Models/Order.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Models/OrderAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Models/OrderAddress.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Models/OrderHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Models/OrderHistory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Models/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Models/OrderItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Models/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Models/OrderStatus.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Services/IOrderEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Services/IOrderEmailService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Services/IOrderService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Services/OrderEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Services/OrderEmailService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/Services/OrderService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/wwwroot/admin/order/order-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/wwwroot/admin/order/order-list.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/wwwroot/admin/orders.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/wwwroot/admin/orders.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Orders/wwwroot/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Orders/wwwroot/checkout.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentBraintree/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentBraintree/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentBraintree/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentBraintree/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentBraintree/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentBraintree/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentCashfree/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentCashfree/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentCashfree/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentCashfree/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentCashfree/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentCashfree/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentCoD/Models/CoDSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentCoD/Models/CoDSetting.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentCoD/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentCoD/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentCoD/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentCoD/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentCoD/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentCoD/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentMomo/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentMomo/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentMomo/MomoSecurityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentMomo/MomoSecurityHelper.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentMomo/ViewModels/StatusRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentMomo/ViewModels/StatusRequest.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentMomo/ViewModels/StatusResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentMomo/ViewModels/StatusResponse.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentMomo/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentMomo/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentMomo/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentMomo/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentNganLuong/ErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentNganLuong/ErrorMessages.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentNganLuong/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentNganLuong/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentNganLuong/SecurityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentNganLuong/SecurityHelper.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentNganLuong/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentNganLuong/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentNganLuong/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentNganLuong/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentPaypalExpress/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentPaypalExpress/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentPaypalExpress/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentPaypalExpress/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentStripe/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentStripe/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentStripe/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentStripe/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.PaymentStripe/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.PaymentStripe/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Payments/Models/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Payments/Models/Payment.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Payments/Models/PaymentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Payments/Models/PaymentProvider.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Payments/Models/PaymentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Payments/Models/PaymentStatus.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Payments/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Payments/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Payments/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Payments/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Payments/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Payments/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Models/CartRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Models/CartRule.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleCategory.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleCustomerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleCustomerGroup.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleProduct.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Models/CartRuleUsage.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Models/CatalogRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Models/CatalogRule.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Models/Coupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Models/Coupon.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Services/CartInfoForCoupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Services/CartInfoForCoupon.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Services/CartItemForCoupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Services/CartItemForCoupon.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Services/CouponService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Services/CouponService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Services/DiscountableProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Services/DiscountableProduct.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Services/DiscountedProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Services/DiscountedProduct.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/Services/ICouponService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/Services/ICouponService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Pricing/wwwroot/admin/pricing.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Pricing/wwwroot/admin/pricing.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ProductComparison/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ProductComparison/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ProductComparison/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ProductComparison/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ProductRecentlyViewed/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ProductRecentlyViewed/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ProductRecentlyViewed/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ProductRecentlyViewed/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Data/IReplyRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Data/IReplyRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Data/IReviewRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Data/IReviewRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Data/ReplyRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Data/ReplyRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Data/ReviewRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Data/ReviewRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Models/Reply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Models/Reply.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Models/ReplyListItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Models/ReplyListItemDto.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Models/ReplyStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Models/ReplyStatus.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Models/Review.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Models/ReviewListItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Models/ReviewListItemDto.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/Models/ReviewStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/Models/ReviewStatus.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/wwwroot/admin/reviews.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/wwwroot/admin/reviews.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/wwwroot/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/wwwroot/list.css -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Reviews/wwwroot/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Reviews/wwwroot/list.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SampleData/Data/ISqlRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SampleData/Data/ISqlRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SampleData/Data/SqlRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SampleData/Data/SqlRepository.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SampleData/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SampleData/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SampleData/Services/SampleDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SampleData/Services/SampleDataService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SampleData/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SampleData/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Search/Models/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Search/Models/Query.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Search/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Search/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Search/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Search/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Search/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Search/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Search/wwwroot/admin/search-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Search/wwwroot/admin/search-service.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Search/wwwroot/admin/search.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Search/wwwroot/admin/search.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/Models/Shipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/Models/Shipment.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/Models/ShipmentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/Models/ShipmentItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/Models/ShipmentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/Models/ShipmentStatus.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/Services/IShipmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/Services/IShipmentService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/Services/ShipmentItemVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/Services/ShipmentItemVm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/Services/ShipmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/Services/ShipmentService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipments/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipments/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipping/Models/ShippingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipping/Models/ShippingProvider.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipping/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipping/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipping/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipping/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Shipping/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Shipping/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingFree/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingFree/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingFree/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingFree/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingPrices/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingPrices/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingPrices/Services/ShippingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingPrices/Services/ShippingItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingPrices/Services/ShippingPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingPrices/Services/ShippingPrice.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingPrices/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingPrices/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingTableRate/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingTableRate/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingTableRate/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingTableRate/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShippingTableRate/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShippingTableRate/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShoppingCart/Models/Cart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShoppingCart/Models/Cart.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShoppingCart/Models/CartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShoppingCart/Models/CartItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShoppingCart/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShoppingCart/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShoppingCart/Services/CartService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShoppingCart/Services/CartService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShoppingCart/Services/ICartService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShoppingCart/Services/ICartService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShoppingCart/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShoppingCart/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.ShoppingCart/wwwroot/add-to-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.ShoppingCart/wwwroot/add-to-cart.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/Hubs/CommonHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/Hubs/CommonHub.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/Hubs/HubBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/Hubs/HubBase.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/Hubs/OnlineClientHubBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/Hubs/OnlineClientHubBase.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/RealTime/IOnlineClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/RealTime/IOnlineClient.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/RealTime/IOnlineClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/RealTime/IOnlineClientManager.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/RealTime/OnlineClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/RealTime/OnlineClient.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/RealTime/OnlineClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/RealTime/OnlineClientManager.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/RealTime/OnlineUserEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/RealTime/OnlineUserEventArgs.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.SignalR/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.SignalR/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageAmazonS3/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageAmazonS3/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageAmazonS3/S3StorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageAmazonS3/S3StorageService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageAmazonS3/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageAmazonS3/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageAzureBlob/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageAzureBlob/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageAzureBlob/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageAzureBlob/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageLocal/LocalStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageLocal/LocalStorageService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageLocal/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageLocal/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.StorageLocal/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.StorageLocal/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/Areas/Tax/ViewModels/TaxClassForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/Areas/Tax/ViewModels/TaxClassForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/Areas/Tax/ViewModels/TaxRateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/Areas/Tax/ViewModels/TaxRateForm.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/Data/TaxCustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/Data/TaxCustomModelBuilder.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/Models/TaxClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/Models/TaxClass.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/Models/TaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/Models/TaxRate.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/Services/ITaxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/Services/ITaxService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/Services/TaxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/Services/TaxService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/SimplCommerce.Module.Tax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/SimplCommerce.Module.Tax.csproj -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Tax/wwwroot/admin/tax.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Tax/wwwroot/admin/tax.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Vendors/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Vendors/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Vendors/Services/IVendorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Vendors/Services/IVendorService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Vendors/Services/VendorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Vendors/Services/VendorService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Vendors/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Vendors/bundleconfig.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Vendors/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Vendors/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.Vendors/wwwroot/admin/vendors.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.Vendors/wwwroot/admin/vendors.module.js -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/Models/WishList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.WishList/Models/WishList.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/Models/WishListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.WishList/Models/WishListItem.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.WishList/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/Services/IWishListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.WishList/Services/IWishListService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/Services/WishListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.WishList/Services/WishListService.cs -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.WishList/module.json -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/wwwroot/private-list.css: -------------------------------------------------------------------------------- 1 | .wishlist .item { 2 | margin-bottom: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/wwwroot/public-list.css: -------------------------------------------------------------------------------- 1 | .wishlist .item { 2 | margin-bottom: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Modules/SimplCommerce.Module.WishList/wwwroot/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/Modules/SimplCommerce.Module.WishList/wwwroot/wishlist.js -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Data/ICustomModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Data/ICustomModelBuilder.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Data/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Data/IRepository.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Data/IRepositoryWithTypedId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Data/IRepositoryWithTypedId.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Extensions/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Extensions/JsonExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Extensions/QueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Extensions/QueryableExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/GlobalConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/GlobalConfiguration.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Helpers/CsvConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Helpers/CsvConverter.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Helpers/CurrencyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Helpers/CurrencyHelper.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Helpers/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Helpers/EnumHelper.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Helpers/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Helpers/ReflectionHelper.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Helpers/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Helpers/StringHelper.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Helpers/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Helpers/TypeHelper.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Localization/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Localization/Culture.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Localization/LanguageDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Localization/LanguageDirection.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Localization/LocalizedContentProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Localization/LocalizedContentProperty.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Localization/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Localization/Resource.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Models/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Models/EntityBase.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Models/EntityBaseWithTypedId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Models/EntityBaseWithTypedId.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Models/ExtendableObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Models/ExtendableObjectExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Models/IEntityWithTypedId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Models/IEntityWithTypedId.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Models/IExtendableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Models/IExtendableObject.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Models/ValidatableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Models/ValidatableObject.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Modules/IModuleConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Modules/IModuleConfigurationManager.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Modules/IModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Modules/IModuleInitializer.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Modules/ModuleConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Modules/ModuleConfigurationManager.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Modules/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Modules/ModuleInfo.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Result.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/ResultOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/ResultOfT.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/SimplCommerce.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/SimplCommerce.Infrastructure.csproj -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Tasks/Scheduling/IScheduledTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Tasks/Scheduling/IScheduledTask.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Tasks/Scheduling/SchedulerTaskWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Tasks/Scheduling/SchedulerTaskWrapper.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/ValidationException.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/HttpRequestExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/HttpRequestExtentions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/IRazorViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/IRazorViewRenderer.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/RazorViewToStringRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/RazorViewToStringRenderer.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/SmartTable/Pagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/SmartTable/Pagination.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/SmartTable/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/SmartTable/Search.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/SmartTable/SmartTableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/SmartTable/SmartTableExtension.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/SmartTable/SmartTableParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/SmartTable/SmartTableParam.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/SmartTable/SmartTableResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/SmartTable/SmartTableResult.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/SmartTable/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/SmartTable/Sort.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/ThemeableViewLocationExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/ThemeableViewLocationExpander.cs -------------------------------------------------------------------------------- /src/SimplCommerce.Infrastructure/Web/ViewComponentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.Infrastructure/Web/ViewComponentExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/IdentityServer/IdentityServerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/IdentityServer/IdentityServerConfig.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/IdentityServer/SimplProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/IdentityServer/SimplProfileService.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/MigrationSimplDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/MigrationSimplDbContextFactory.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Migrations/20190302122027_MomoPayment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Migrations/20190302122027_MomoPayment.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Migrations/20210725112635_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Migrations/20210725112635_init.Designer.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Migrations/20210725112635_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Migrations/20210725112635_init.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Migrations/SimplDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Migrations/SimplDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Modules/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*/ 3 | !.gitignore -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Program.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/SimplCommerce.WebHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/SimplCommerce.WebHost.csproj -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Startup.cs -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Temps/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*/ 3 | !.gitignore -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Themes/CozaStore/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Themes/CozaStore/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Themes/CozaStore/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Themes/CozaStore/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Themes/CozaStore/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Themes/CozaStore/theme.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Themes/SampleTheme/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Themes/SampleTheme/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Themes/SampleTheme/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Themes/SampleTheme/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Themes/SampleTheme/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Themes/SampleTheme/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Themes/SampleTheme/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Themes/SampleTheme/theme.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/404.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/404.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/_AccountMenu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/_AccountMenu.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/_AnalyticsScript.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/_AnalyticsScript.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/_SelectLanguagePartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/_SelectLanguagePartial.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/appsettings.Development.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/appsettings.docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/appsettings.docker.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/appsettings.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/bundleconfig.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/libman.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/modules.json -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/tempkey.rsa -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular-animate/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular-animate/angular-animate.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular-aria/angular-aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular-aria/angular-aria.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular-aria/angular-aria.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular-aria/angular-aria.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular-bootstrap/ui-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular-bootstrap/ui-bootstrap.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular-smart-table/smart-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular-smart-table/smart-table.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular-ui-tree/angular-ui-tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular-ui-tree/angular-ui-tree.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular-ui-tree/angular-ui-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular-ui-tree/angular-ui-tree.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular/angular.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/angular/angular.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootbox/bootbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootbox/bootbox.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootbox/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootbox/bootbox.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/bootstrap4/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/flags/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/flags/blank.gif -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/flags/flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/flags/flags.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/flags/flags.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/flags/flags.min.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/flags/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/flags/flags.png -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ar-tn.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ar.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_en-us.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_en.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_fr-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_fr-fr.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_fr.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ko-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ko-kr.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ko.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_pt-br.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_pt.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ru-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ru-ru.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_ru.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_uk-ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_uk-ua.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_uk.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_vi-vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_vi-vn.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/i18n/angular-locale_vi.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.slim.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/matchheight/jquery.matchHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/matchheight/jquery.matchHeight.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/nouislider/distribute/nouislider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/nouislider/distribute/nouislider.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/pagination/README.md -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/pagination/dirPagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/pagination/dirPagination.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/pagination/dirPagination.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/pagination/dirPagination.spec.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/pagination/dirPagination.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/pagination/dirPagination.tpl.html -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/pagination/testTemplate.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/pagination/testTemplate.tpl.html -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/signalr/dist/browser/signalr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/signalr/dist/browser/signalr.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/signalr/dist/browser/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/signalr/dist/browser/signalr.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/smoothproducts/js/smoothproducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/smoothproducts/js/smoothproducts.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/font/summernote.eot -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/font/summernote.woff -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ar-AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ar-AR.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-bg-BG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-bg-BG.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ca-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ca-ES.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-cs-CZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-cs-CZ.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-da-DK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-da-DK.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-de-DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-de-DE.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-es-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-es-ES.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-es-EU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-es-EU.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-fa-IR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-fa-IR.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-fi-FI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-fi-FI.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-fr-FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-fr-FR.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-gl-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-gl-ES.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-he-IL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-he-IL.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-hr-HR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-hr-HR.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-hu-HU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-hu-HU.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-id-ID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-id-ID.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-it-IT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-it-IT.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ja-JP.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ko-KR.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-lt-LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-lt-LT.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-lt-LV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-lt-LV.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-nb-NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-nb-NO.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-nl-NL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-nl-NL.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-pl-PL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-pl-PL.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-pt-BR.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-pt-PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-pt-PT.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ro-RO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ro-RO.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ru-RU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-ru-RU.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sk-SK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sk-SK.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sl-SI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sl-SI.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sr-RS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sr-RS.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sv-SE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-sv-SE.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-th-TH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-th-TH.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-tr-TR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-tr-TR.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-uk-UA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-uk-UA.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-vi-VN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-vi-VN.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-zh-CN.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/lang/summernote-zh-TW.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/summernote.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/summernote.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/summernote/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/summernote/summernote.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.js.map -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.min.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/toastr/build/toastr.min.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/lib/wnumb/wNumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/lib/wnumb/wNumb.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/libs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/libs.min.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/CozaStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/CozaStore.png -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/flags.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/flags.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/flags.min.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/main.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/simpl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/simpl.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/css/util.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/images/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/images/icons/blank.gif -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/images/icons/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/images/icons/flags.png -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/images/icons/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/images/icons/pin.png -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/js/cozastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/js/cozastore.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/js/slick-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/js/slick-custom.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/site.min.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/vendor/slick/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/vendor/slick/config.rb -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/vendor/slick/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/vendor/slick/slick.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/vendor/slick/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/CozaStore/vendor/slick/slick.js -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/SampleTheme/SampleTheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/SampleTheme/SampleTheme.png -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/SampleTheme/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/SampleTheme/site.css -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/themes/generic-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/themes/generic-theme.png -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/user-content/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*/ 3 | !.gitignore 4 | !no-image.png -------------------------------------------------------------------------------- /src/SimplCommerce.WebHost/wwwroot/user-content/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/src/SimplCommerce.WebHost/wwwroot/user-content/no-image.png -------------------------------------------------------------------------------- /test/SimplCommerce.Infrastructure.Tests/EnumHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/test/SimplCommerce.Infrastructure.Tests/EnumHelperTests.cs -------------------------------------------------------------------------------- /test/SimplCommerce.Infrastructure.Tests/StringHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/test/SimplCommerce.Infrastructure.Tests/StringHelperTests.cs -------------------------------------------------------------------------------- /test/SimplCommerce.Module.Cms.Tests/Controllers/PageControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/test/SimplCommerce.Module.Cms.Tests/Controllers/PageControllerTests.cs -------------------------------------------------------------------------------- /test/SimplCommerce.Module.Cms.Tests/SimplCommerce.Module.Cms.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/test/SimplCommerce.Module.Cms.Tests/SimplCommerce.Module.Cms.Tests.csproj -------------------------------------------------------------------------------- /test/SimplCommerce.Module.Inventory.Tests/StockServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/test/SimplCommerce.Module.Inventory.Tests/StockServiceTests.cs -------------------------------------------------------------------------------- /test/SimplCommerce.Module.Pricing.Tests/CouponServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/SimplCommerce/HEAD/test/SimplCommerce.Module.Pricing.Tests/CouponServiceTest.cs --------------------------------------------------------------------------------