├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── aspnetcore.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── GrandNode.sln ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── docker-compose.dcproj ├── docker-compose.override.yml ├── docker-compose.yml └── src ├── API └── Grand.Api │ ├── Commands │ ├── Handlers │ │ ├── Catalog │ │ │ ├── AddBrandCommandHandler.cs │ │ │ ├── AddCategoryCommandHandler.cs │ │ │ ├── AddCollectionCommandHandler.cs │ │ │ ├── AddProductAttributeCommandHandler.cs │ │ │ ├── AddProductAttributeMappingCommandHandler.cs │ │ │ ├── AddProductCategoryCommandHandler.cs │ │ │ ├── AddProductCollectionCommandHandler.cs │ │ │ ├── AddProductCommandHandler.cs │ │ │ ├── AddProductPictureCommandHandler.cs │ │ │ ├── AddProductSpecificationCommandHandler.cs │ │ │ ├── AddProductTierPriceCommandHandler.cs │ │ │ ├── AddSpecificationAttributeCommandHandler.cs │ │ │ ├── DeleteBrandCommandHandler.cs │ │ │ ├── DeleteCategoryCommandHandler.cs │ │ │ ├── DeleteCollectionCommandHandler.cs │ │ │ ├── DeleteProductAttributeCommandHandler.cs │ │ │ ├── DeleteProductAttributeMappingCommandHandler.cs │ │ │ ├── DeleteProductCategoryCommandHandler.cs │ │ │ ├── DeleteProductCollectionCommandHandler.cs │ │ │ ├── DeleteProductCommandHandler.cs │ │ │ ├── DeleteProductPictureCommandHandler.cs │ │ │ ├── DeleteProductSpecificationCommandHandler.cs │ │ │ ├── DeleteProductTierPriceCommandHandler.cs │ │ │ ├── DeleteSpecificationAttributeCommandHandler.cs │ │ │ ├── UpdateBrandCommandHandler.cs │ │ │ ├── UpdateCategoryCommandHandler.cs │ │ │ ├── UpdateCollectionCommandHandler.cs │ │ │ ├── UpdateProductAttributeCommandHandler.cs │ │ │ ├── UpdateProductAttributeMappingCommandHandler.cs │ │ │ ├── UpdateProductCategoryCommandHandler.cs │ │ │ ├── UpdateProductCollectionCommandHandler.cs │ │ │ ├── UpdateProductCommandHandler.cs │ │ │ ├── UpdateProductPictureCommandHandler.cs │ │ │ ├── UpdateProductSpecificationCommandHandler.cs │ │ │ ├── UpdateProductStockCommandHandler.cs │ │ │ ├── UpdateProductTierPriceCommandHandler.cs │ │ │ └── UpdateSpecificationAttributeCommandHandler.cs │ │ ├── Common │ │ │ ├── AddPictureCommandHandler.cs │ │ │ ├── DeletePictureCommandHandler.cs │ │ │ ├── GenerateTokenCommandHandler.cs │ │ │ └── GenerateTokenWebCommandHandler.cs │ │ └── Customers │ │ │ ├── AddCustomerAddressCommandHandler.cs │ │ │ ├── AddCustomerCommandHandler.cs │ │ │ ├── AddCustomerGroupCommandHandler.cs │ │ │ ├── DeleteCustomerAddressCommandHandler.cs │ │ │ ├── DeleteCustomerCommandHandler.cs │ │ │ ├── DeleteCustomerGroupCommandHandler.cs │ │ │ ├── UpdateCustomerAddressCommandHandler.cs │ │ │ ├── UpdateCustomerCommandHandler.cs │ │ │ └── UpdateCustomerGroupCommandHandler.cs │ └── Models │ │ ├── Catalog │ │ ├── AddBrandCommand.cs │ │ ├── AddCategoryCommand.cs │ │ ├── AddCollectionCommand.cs │ │ ├── AddProductAttributeCommand.cs │ │ ├── AddProductAttributeMappingCommand.cs │ │ ├── AddProductCategoryCommand.cs │ │ ├── AddProductCollectionCommand.cs │ │ ├── AddProductCommand.cs │ │ ├── AddProductPictureCommand.cs │ │ ├── AddProductSpecificationCommand.cs │ │ ├── AddProductTierPriceCommand.cs │ │ ├── AddSpecificationAttributeCommand.cs │ │ ├── DeleteBrandCommand.cs │ │ ├── DeleteCategoryCommand.cs │ │ ├── DeleteCollectionCommand.cs │ │ ├── DeleteProductAttributeCommand.cs │ │ ├── DeleteProductAttributeMappingCommand.cs │ │ ├── DeleteProductCategoryCommand.cs │ │ ├── DeleteProductCollectionCommand.cs │ │ ├── DeleteProductCommand.cs │ │ ├── DeleteProductPictureCommand.cs │ │ ├── DeleteProductSpecificationCommand.cs │ │ ├── DeleteProductTierPriceCommand.cs │ │ ├── DeleteSpecificationAttributeCommand.cs │ │ ├── UpdateBrandCommand.cs │ │ ├── UpdateCategoryCommand.cs │ │ ├── UpdateCollectionCommand.cs │ │ ├── UpdateProductAttributeCommand.cs │ │ ├── UpdateProductAttributeMappingCommand.cs │ │ ├── UpdateProductCategoryCommand.cs │ │ ├── UpdateProductCollectionCommand.cs │ │ ├── UpdateProductCommand.cs │ │ ├── UpdateProductPictureCommand.cs │ │ ├── UpdateProductSpecificationCommand.cs │ │ ├── UpdateProductStockCommand.cs │ │ ├── UpdateProductTierPriceCommand.cs │ │ └── UpdateSpecificationAttributeCommand.cs │ │ ├── Common │ │ ├── AddPictureCommand.cs │ │ ├── DeletePictureCommand.cs │ │ ├── GenerateTokenCommand.cs │ │ └── GenerateTokenWebCommand.cs │ │ └── Customers │ │ ├── AddCustomerAddressCommand.cs │ │ ├── AddCustomerCommand.cs │ │ ├── AddCustomerGroupCommand.cs │ │ ├── DeleteCustomerAddressCommand.cs │ │ ├── DeleteCustomerCommand.cs │ │ ├── DeleteCustomerGroupCommand.cs │ │ ├── UpdateCustomerAddressCommand.cs │ │ ├── UpdateCustomerCommand.cs │ │ └── UpdateCustomerGroupCommand.cs │ ├── Constants │ └── Configurations.cs │ ├── Controllers │ ├── BaseODataController.cs │ ├── OData │ │ ├── BrandController.cs │ │ ├── BrandLayoutController.cs │ │ ├── CategoryController.cs │ │ ├── CategoryLayoutController.cs │ │ ├── CollectionController.cs │ │ ├── CollectionLayoutController.cs │ │ ├── CountryController.cs │ │ ├── CurrencyController.cs │ │ ├── CustomerController.cs │ │ ├── CustomerGroupController.cs │ │ ├── DeliveryDateController.cs │ │ ├── LanguageController.cs │ │ ├── PickupPointController.cs │ │ ├── PictureController.cs │ │ ├── ProductAttributeController.cs │ │ ├── ProductController.cs │ │ ├── ProductLayoutController.cs │ │ ├── ShippingMethodController.cs │ │ ├── SpecificationAttributeController.cs │ │ ├── StateProvinceController.cs │ │ ├── StoreController.cs │ │ ├── VendorController.cs │ │ └── WarehouseController.cs │ ├── TokenController.cs │ └── TokenWebController.cs │ ├── DTOs │ ├── Catalog │ │ ├── BrandDto.cs │ │ ├── CategoryDTO.cs │ │ ├── CollectionDto.cs │ │ ├── ProductAttributeCombinationDto.cs │ │ ├── ProductAttributeDto.cs │ │ ├── ProductAttributeMappingDto.cs │ │ ├── ProductCategoryDto.cs │ │ ├── ProductCollectionDto.cs │ │ ├── ProductDto.cs │ │ ├── ProductPictureDto.cs │ │ ├── ProductSpecificationAttributeDto.cs │ │ ├── ProductTierPriceDto.cs │ │ ├── ProductWarehouseInventoryDto.cs │ │ └── SpecificationAttributeDto.cs │ ├── Common │ │ ├── CountryDto.cs │ │ ├── CurrencyDto.cs │ │ ├── LanguageDto.cs │ │ ├── LayoutDto.cs │ │ ├── PictureDto.cs │ │ ├── StateProvinceDto.cs │ │ └── StoreDto.cs │ ├── Customers │ │ ├── AddressDto.cs │ │ ├── CustomerDto.cs │ │ ├── CustomerGroupDto.cs │ │ └── VendorDto.cs │ ├── Shipping │ │ ├── DeliveryDateDto.cs │ │ ├── PickupPointDto.cs │ │ ├── ShippingMethodDto.cs │ │ └── WarehouseDto.cs │ └── TokenDto.cs │ ├── Extensions │ ├── AddParamOperationFilter.cs │ └── MappingExtensions.cs │ ├── Filters │ └── AuthorizeApiAdminAttribute.cs │ ├── Grand.Api.csproj │ ├── Infrastructure │ ├── ApiAuthenticationRegistrar.cs │ ├── AuthenticationStartup.cs │ ├── DependencyEdmModel.cs │ ├── DependencyManagement │ │ └── IDependencyEdmModel.cs │ ├── EnumSchemaFilter.cs │ ├── Extensions │ │ ├── JwtSecurityKey.cs │ │ └── ServiceExtensions.cs │ ├── Mapper │ │ └── Profiles │ │ │ ├── AddressProfile.cs │ │ │ ├── BrandProfile.cs │ │ │ ├── CategoryProfile.cs │ │ │ ├── CollectionProfile.cs │ │ │ ├── CustomerGroupProfile.cs │ │ │ ├── CustomerProfile.cs │ │ │ ├── PictureProfile.cs │ │ │ ├── ProductAttributeMappingProfile.cs │ │ │ ├── ProductAttributeProfile.cs │ │ │ ├── ProductProfile.cs │ │ │ ├── SpecificationAttributeProfile.cs │ │ │ └── TierPriceProfile.cs │ ├── ODataParamsStartup.cs │ ├── ODataRouteProvider.cs │ └── SwaggerStartup.cs │ ├── Jwt │ ├── JwtToken.cs │ └── JwtTokenBuilder.cs │ ├── Models │ ├── BaseApiEntityModel.cs │ └── Common │ │ └── LoginModel.cs │ ├── Queries │ ├── Handlers │ │ ├── Catalog │ │ │ ├── GetBrandQueryHandler.cs │ │ │ ├── GetCategoryQueryHandler.cs │ │ │ ├── GetCollectionQueryHandler.cs │ │ │ ├── GetProductAttributeQueryHandler.cs │ │ │ ├── GetProductQueryHandler.cs │ │ │ └── GetSpecificationAttributeQueryHandler.cs │ │ ├── Common │ │ │ ├── GetCountryQueryHandler.cs │ │ │ ├── GetCurrencyQueryHandler.cs │ │ │ ├── GetLanguageQueryHandler.cs │ │ │ ├── GetLayoutQueryHandler.cs │ │ │ ├── GetPictureByIdQueryHandler.cs │ │ │ ├── GetStateProvinceQueryHandler.cs │ │ │ └── GetStoreQueryHandler.cs │ │ ├── Customers │ │ │ ├── GetCustomerGroupQueryHandler.cs │ │ │ ├── GetCustomerQueryHandler.cs │ │ │ └── GetVendorQueryHandler.cs │ │ └── Shipping │ │ │ ├── GetDeliveryDateQueryHandler.cs │ │ │ ├── GetPickupPointQueryHandler.cs │ │ │ ├── GetShippingMethodQueryHandler.cs │ │ │ └── GetWarehouseQueryHandler.cs │ └── Models │ │ ├── Common │ │ ├── GetLayoutQuery.cs │ │ ├── GetPictureByIdQuery.cs │ │ └── GetQuery.cs │ │ └── Customers │ │ └── GetCustomerQuery.cs │ └── Validators │ ├── Catalog │ ├── BrandValidator.cs │ ├── CategoryValidator.cs │ ├── CollectionValidator.cs │ ├── ProductAttributeMappingValidator.cs │ ├── ProductAttributeValidator.cs │ ├── ProductCategoryValidator.cs │ ├── ProductCollectionValidator.cs │ ├── ProductPictureValidator.cs │ ├── ProductSpecificationAttributeValidator.cs │ ├── ProductTierPriceValidator.cs │ ├── ProductValidator.cs │ └── SpecificationAttributeValidator.cs │ ├── Common │ ├── LoginValidator.cs │ └── PictureValidator.cs │ └── Customers │ ├── AddressValidator.cs │ ├── CustomerGroupValidator.cs │ └── CustomerValidator.cs ├── Business ├── Grand.Business.Authentication │ ├── Events │ │ ├── CustomerDeletedEventHandler.cs │ │ └── RegisteredByExternalMethodEventHandler.cs │ ├── Extensions │ │ └── ExternalAuthenticationProviderExtensions.cs │ ├── Grand.Business.Authentication.csproj │ ├── Interfaces │ │ ├── IApiAuthenticationService.cs │ │ ├── IAuthenticationBuilder.cs │ │ ├── IExternalAuthenticationProvider.cs │ │ ├── IExternalAuthenticationService.cs │ │ ├── IGrandAuthenticationService.cs │ │ ├── IJwtBearerAuthenticationService.cs │ │ ├── IJwtBearerCustomerAuthenticationService.cs │ │ ├── IRefreshTokenService.cs │ │ ├── ISMSVerificationService.cs │ │ └── ITwoFactorAuthenticationService.cs │ ├── Services │ │ ├── ApiAuthenticationService.cs │ │ ├── CookieAuthenticationService.cs │ │ ├── ExternalAuthenticationService.cs │ │ ├── JwtBearerAuthenticationService.cs │ │ ├── JwtBearerCustomerAuthenticationService.cs │ │ ├── RefreshTokenService.cs │ │ └── TwoFactorAuthenticationService.cs │ ├── Startup │ │ └── StartupApplication.cs │ └── Utilities │ │ ├── ExternalAuthParam.cs │ │ ├── GrandCookieAuthenticationDefaults.cs │ │ └── TwoFactorCodeSetup.cs ├── Grand.Business.Catalog │ ├── Commands │ │ ├── Handlers │ │ │ ├── UpdateIntervalPropertiesCommandHandler.cs │ │ │ └── UpdateProductReviewTotalsCommandHandler.cs │ │ └── Models │ │ │ ├── SendNotificationsToSubscribersCommand.cs │ │ │ ├── SendOutBidCustomerCommand.cs │ │ │ ├── SendQuantityBelowStoreOwnerCommand.cs │ │ │ ├── UpdateIntervalPropertiesCommand.cs │ │ │ └── UpdateProductReviewTotalsCommand.cs │ ├── Events │ │ ├── Handlers │ │ │ ├── BrandDeletedEventHandler.cs │ │ │ ├── CategoryDeletedEventHandler.cs │ │ │ ├── CollectionDeletedEventHandler.cs │ │ │ ├── DeleteMeasureUnitOnProductEventHandler.cs │ │ │ ├── DeliveryDateDeletedEventHandler.cs │ │ │ ├── DiscountDeletedEventHandler.cs │ │ │ ├── ProductDeletedEventHandler.cs │ │ │ ├── ProductPublishEventHandler.cs │ │ │ ├── ProductUnPublishEventHandler.cs │ │ │ ├── TaxCategoryDeletedEventHandler.cs │ │ │ ├── UpdateProductOnCartEventHandler.cs │ │ │ └── WarehouseDeletedEventHandler.cs │ │ └── Models │ │ │ ├── ProductPublishEvent.cs │ │ │ ├── ProductReviewApprovedEvent.cs │ │ │ ├── ProductUnPublishEvent.cs │ │ │ ├── UpdateProductOnCartEvent.cs │ │ │ └── UpdateStockEvent.cs │ ├── Extensions │ │ ├── ProductAttributeExtensions.cs │ │ ├── ProductExtensions.cs │ │ ├── RoundingHelper.cs │ │ └── TierPriceExtensions.cs │ ├── Grand.Business.Catalog.csproj │ ├── Interfaces │ │ ├── Brands │ │ │ ├── IBrandLayoutService.cs │ │ │ └── IBrandService.cs │ │ ├── Categories │ │ │ ├── ICategoryLayoutService.cs │ │ │ ├── ICategoryService.cs │ │ │ └── IProductCategoryService.cs │ │ ├── Collections │ │ │ ├── ICollectionLayoutService.cs │ │ │ ├── ICollectionService.cs │ │ │ └── IProductCollectionService.cs │ │ ├── Discounts │ │ │ ├── IDiscountAmountProvider.cs │ │ │ ├── IDiscountProvider.cs │ │ │ ├── IDiscountRule.cs │ │ │ └── IDiscountService.cs │ │ ├── Prices │ │ │ ├── IPriceFormatter.cs │ │ │ └── IPricingService.cs │ │ ├── Products │ │ │ ├── IAuctionService.cs │ │ │ ├── ICompareProductsService.cs │ │ │ ├── ICopyProductService.cs │ │ │ ├── ICustomerGroupProductService.cs │ │ │ ├── IInventoryManageService.cs │ │ │ ├── IOutOfStockSubscriptionService.cs │ │ │ ├── IProductAttributeFormatter.cs │ │ │ ├── IProductAttributeParser.cs │ │ │ ├── IProductAttributeService.cs │ │ │ ├── IProductCourseService.cs │ │ │ ├── IProductLayoutService.cs │ │ │ ├── IProductReservationService.cs │ │ │ ├── IProductReviewService.cs │ │ │ ├── IProductService.cs │ │ │ ├── IProductTagService.cs │ │ │ ├── IRecentlyViewedProductsService.cs │ │ │ ├── ISpecificationAttributeService.cs │ │ │ └── IStockQuantityService.cs │ │ └── Tax │ │ │ ├── ITaxCategoryService.cs │ │ │ ├── ITaxProvider.cs │ │ │ ├── ITaxService.cs │ │ │ └── IVatService.cs │ ├── Queries │ │ ├── Handlers │ │ │ ├── GetPersonalizedProductsQueryHandler.cs │ │ │ ├── GetPriceByCustomerProductQueryHandler.cs │ │ │ ├── GetProductArchByIdQueryHandler.cs │ │ │ ├── GetRecommendedProductsQueryHandler.cs │ │ │ ├── GetSearchProductsQueryHandler.cs │ │ │ ├── GetSuggestedProductsQueryHandler.cs │ │ │ └── GetVendorByIdQueryHandler.cs │ │ └── Models │ │ │ ├── GetPersonalizedProductsQuery.cs │ │ │ ├── GetPriceByCustomerProductQuery.cs │ │ │ ├── GetProductArchByIdQuery.cs │ │ │ ├── GetRecommendedProductsQuery.cs │ │ │ ├── GetSearchProductsQuery.cs │ │ │ ├── GetSuggestedProductsQuery.cs │ │ │ └── GetVendorByIdQuery.cs │ ├── Services │ │ ├── Brands │ │ │ ├── BrandLayoutService.cs │ │ │ └── BrandService.cs │ │ ├── Categories │ │ │ ├── CategoryLayoutService.cs │ │ │ ├── CategoryService.cs │ │ │ └── ProductCategoryService.cs │ │ ├── Collections │ │ │ ├── CollectionLayoutService.cs │ │ │ ├── CollectionService.cs │ │ │ └── ProductCollectionService.cs │ │ ├── Discounts │ │ │ └── DiscountService.cs │ │ ├── Prices │ │ │ ├── PriceFormatter.cs │ │ │ └── PricingService.cs │ │ ├── Products │ │ │ ├── AuctionService.cs │ │ │ ├── CompareProductsService.cs │ │ │ ├── CopyProductService.cs │ │ │ ├── CustomerGroupProductService.cs │ │ │ ├── InventoryManageService.cs │ │ │ ├── OutOfStockSubscriptionService.cs │ │ │ ├── ProductAttributeFormatter.cs │ │ │ ├── ProductAttributeParser.cs │ │ │ ├── ProductAttributeService.cs │ │ │ ├── ProductCourseService.cs │ │ │ ├── ProductLayoutService.cs │ │ │ ├── ProductReservationService.cs │ │ │ ├── ProductReviewService.cs │ │ │ ├── ProductService.cs │ │ │ ├── ProductTagService.cs │ │ │ ├── RecentlyViewedProductsService.cs │ │ │ ├── SpecificationAttributeService.cs │ │ │ └── StockQuantityService.cs │ │ └── Tax │ │ │ ├── TaxCategoryService.cs │ │ │ ├── TaxProductPrice.cs │ │ │ ├── TaxService.cs │ │ │ └── VatService.cs │ ├── Startup │ │ └── StartupApplication.cs │ └── Utilities │ │ ├── ApplyDiscount.cs │ │ ├── DiscountRuleValidationRequest.cs │ │ ├── DiscountRuleValidationResult.cs │ │ ├── DiscountValidationResult.cs │ │ ├── ProductsCategory.cs │ │ ├── ProductsCollection.cs │ │ ├── TaxRequest.cs │ │ ├── TaxResult.cs │ │ ├── VatRequest.cs │ │ └── VatResponse.cs ├── Grand.Business.Checkout │ ├── Commands │ │ ├── Handlers │ │ │ ├── Orders │ │ │ │ ├── ActivatedValueForPurchasedVouchersCommandHandler.cs │ │ │ │ ├── AddRequiredProductsCommandHandler.cs │ │ │ │ ├── AwardLoyaltyPointsCommandHandler.cs │ │ │ │ ├── CalculateLoyaltyPointsCommandHandler.cs │ │ │ │ ├── CancelOrderCommandHandler.cs │ │ │ │ ├── CancelOrderItemCommandHandler.cs │ │ │ │ ├── CaptureCommandHandler.cs │ │ │ │ ├── CheckOrderStatusCommandHandler.cs │ │ │ │ ├── DeleteOrderCommandHandler.cs │ │ │ │ ├── DeleteOrderItemCommandHandler.cs │ │ │ │ ├── InsertOrderItemCommandHandler.cs │ │ │ │ ├── MarkAsAuthorizedCommandHandler.cs │ │ │ │ ├── MarkAsPaidCommandHandler.cs │ │ │ │ ├── MaxOrderNumberCommandHandler.cs │ │ │ │ ├── OrderStatusCommandHandler.cs │ │ │ │ ├── PartiallyPaidOfflineCommandHandler.cs │ │ │ │ ├── PartiallyRefundCommandHandler.cs │ │ │ │ ├── PartiallyRefundOfflineCommandHandler.cs │ │ │ │ ├── PlaceOrderCommandHandler.cs │ │ │ │ ├── PrepareOrderCodeCommandHandler.cs │ │ │ │ ├── ProcessOrderPaidCommandHandler.cs │ │ │ │ ├── ReOrderCommandHandler.cs │ │ │ │ ├── ReduceLoyaltyPointsCommandHandler.cs │ │ │ │ ├── RefundCommandHandler.cs │ │ │ │ ├── RefundOfflineCommandHandler.cs │ │ │ │ ├── ReturnBackRedeemedLoyaltyPointsCommandHandler.cs │ │ │ │ ├── UpdateOrderItemCommandHandler.cs │ │ │ │ ├── ValidateMinShoppingCartSubtotalAmountCommandHandler.cs │ │ │ │ ├── ValidateShoppingCartTotalAmountCommandHandler.cs │ │ │ │ ├── VoidCommandHandler.cs │ │ │ │ └── VoidOfflineCommandHandler.cs │ │ │ └── Shipping │ │ │ │ ├── DeliveryCommandHandler.cs │ │ │ │ └── ShipCommandHandler.cs │ │ └── Models │ │ │ ├── Orders │ │ │ ├── ActivatedValueForPurchasedVouchersCommand.cs │ │ │ ├── AddRequiredProductsCommand.cs │ │ │ ├── AwardLoyaltyPointsCommand.cs │ │ │ ├── CalculateLoyaltyPointsCommand.cs │ │ │ ├── CancelOrderCommand.cs │ │ │ ├── CancelOrderItemCommand.cs │ │ │ ├── CaptureCommand.cs │ │ │ ├── CheckOrderStatusCommand.cs │ │ │ ├── DeleteOrderCommand.cs │ │ │ ├── DeleteOrderItemCommand.cs │ │ │ ├── InsertOrderItemCommand.cs │ │ │ ├── MarkAsAuthorizedCommand.cs │ │ │ ├── MarkAsPaidCommand.cs │ │ │ ├── MaxOrderNumberCommand.cs │ │ │ ├── PartiallyPaidOfflineCommand.cs │ │ │ ├── PartiallyRefundCommand.cs │ │ │ ├── PartiallyRefundOfflineCommand.cs │ │ │ ├── PlaceOrderCommand.cs │ │ │ ├── PrepareOrderCodeCommand.cs │ │ │ ├── ProcessOrderPaidCommand.cs │ │ │ ├── ReOrderCommand.cs │ │ │ ├── ReduceLoyaltyPointsCommand.cs │ │ │ ├── RefundCommand.cs │ │ │ ├── RefundOfflineCommand.cs │ │ │ ├── ReturnBackRedeemedLoyaltyPointsCommand.cs │ │ │ ├── SetOrderStatusCommand.cs │ │ │ ├── UpdateOrderItemCommand.cs │ │ │ ├── ValidateMinShoppingCartSubtotalAmountCommand.cs │ │ │ ├── ValidateShoppingCartTotalAmountCommand.cs │ │ │ ├── VoidCommand.cs │ │ │ └── VoidOfflineCommand.cs │ │ │ └── Shipping │ │ │ ├── DeliveryCommand.cs │ │ │ └── ShipCommand.cs │ ├── Enum │ │ ├── PaymentMethodType.cs │ │ ├── ShipmentStatusEvent.cs │ │ └── ShippingRateCalculationType.cs │ ├── Events │ │ ├── Customers │ │ │ └── CustomerRegisteredEventHandler.cs │ │ ├── Orders │ │ │ ├── CapturePaymentTransactionDetailsEvent.cs │ │ │ ├── MerchandiseReturnDeletedEventHandler.cs │ │ │ ├── MerchandiseReturnInsertEventHandler.cs │ │ │ ├── OrderCancelledEvent.cs │ │ │ ├── OrderDeletedEvent.cs │ │ │ ├── OrderDeletedEventHandler.cs │ │ │ ├── OrderPaidEvent.cs │ │ │ ├── OrderPlacedEvent.cs │ │ │ ├── OrderPlacedEventHandler.cs │ │ │ ├── PaymentTransactionMarkAsAuthorizedEvent.cs │ │ │ ├── PaymentTransactionRefundedEvent.cs │ │ │ ├── PaymentTransactionVoidOfflineEvent.cs │ │ │ ├── PlaceOrderDetailsEvent.cs │ │ │ └── VoidPaymentTransactionDetailsEvent.cs │ │ ├── Shipping │ │ │ ├── ShipmentDeletedEventHandler.cs │ │ │ ├── ShipmentDeliveredEvent.cs │ │ │ ├── ShipmentInsertedEventHandler.cs │ │ │ └── ShipmentSentEvent.cs │ │ └── ShoppingCart │ │ │ ├── AddToCartEvent.cs │ │ │ ├── CustomerLoggedInEventHandler.cs │ │ │ ├── ShoppingCartItemWarningsEvent.cs │ │ │ └── ShoppingCartWarningsEvent.cs │ ├── Extensions │ │ ├── CheckoutAttributeExtensions.cs │ │ ├── OrderEventPublisherExtensions.cs │ │ ├── OrderExtensions.cs │ │ ├── PaymentExtensions.cs │ │ ├── ShippingEventPublisherExtensions.cs │ │ ├── ShippingExtensions.cs │ │ ├── ShoppingCartEventPublisherExtensions.cs │ │ └── ShoppingCartExtensions.cs │ ├── Grand.Business.Checkout.csproj │ ├── Interfaces │ │ ├── CheckoutAttributes │ │ │ ├── ICheckoutAttributeFormatter.cs │ │ │ ├── ICheckoutAttributeParser.cs │ │ │ └── ICheckoutAttributeService.cs │ │ ├── GiftVouchers │ │ │ └── IGiftVoucherService.cs │ │ ├── Orders │ │ │ ├── ILoyaltyPointsService.cs │ │ │ ├── IMerchandiseReturnService.cs │ │ │ ├── IOrderCalculationService.cs │ │ │ ├── IOrderService.cs │ │ │ ├── IOrderStatusService.cs │ │ │ ├── IOrderTagService.cs │ │ │ ├── IShoppingCartService.cs │ │ │ └── IShoppingCartValidator.cs │ │ ├── Payments │ │ │ ├── IPaymentProvider.cs │ │ │ ├── IPaymentService.cs │ │ │ └── IPaymentTransactionService.cs │ │ └── Shipping │ │ │ ├── IDeliveryDateService.cs │ │ │ ├── IPickupPointService.cs │ │ │ ├── IShipmentService.cs │ │ │ ├── IShipmentTracker.cs │ │ │ ├── IShippingMethodService.cs │ │ │ ├── IShippingRateCalculationProvider.cs │ │ │ ├── IShippingService.cs │ │ │ └── IWarehouseService.cs │ ├── Queries │ │ ├── Handlers │ │ │ └── Orders │ │ │ │ ├── CanCancelOrderQueryHandler.cs │ │ │ │ ├── CanCaptureQueryHandler.cs │ │ │ │ ├── CanMarkPaymentTransactionAsAuthorizedQueryHandler.cs │ │ │ │ ├── CanMarkPaymentTransactionAsPaidQueryHandler.cs │ │ │ │ ├── CanPartiallyPaidOfflineQueryHandler.cs │ │ │ │ ├── CanPartiallyRefundOfflineQueryHandler.cs │ │ │ │ ├── CanPartiallyRefundQueryHandler.cs │ │ │ │ ├── CanRefundOfflineQueryHandler.cs │ │ │ │ ├── CanRefundQueryHandler.cs │ │ │ │ ├── CanVoidOfflineQueryHandler.cs │ │ │ │ ├── CanVoidQueryHandler.cs │ │ │ │ ├── GetGiftVoucherQueryHandler.cs │ │ │ │ ├── GetMerchandiseReturnCountQueryHandler.cs │ │ │ │ ├── GetMerchandiseReturnQueryHandler.cs │ │ │ │ ├── GetOrderQueryHandler.cs │ │ │ │ ├── GetPaymentTransactionQueryHandler.cs │ │ │ │ ├── GetPickupPointByIdQueryHandler.cs │ │ │ │ ├── GetVendorsInOrderQueryHandler.cs │ │ │ │ └── IsMerchandiseReturnAllowedQueryHandler.cs │ │ └── Models │ │ │ └── Orders │ │ │ ├── CanCancelOrderQuery.cs │ │ │ ├── CanCaptureQuery.cs │ │ │ ├── CanMarkPaymentTransactionAsAuthorizedQuery.cs │ │ │ ├── CanMarkPaymentTransactionAsPaidQuery.cs │ │ │ ├── CanPartiallyPaidOfflineQuery.cs │ │ │ ├── CanPartiallyRefundOfflineQuery.cs │ │ │ ├── CanPartiallyRefundQuery.cs │ │ │ ├── CanRefundOfflineQuery.cs │ │ │ ├── CanRefundQuery.cs │ │ │ ├── CanVoidOfflineQuery.cs │ │ │ ├── CanVoidQuery.cs │ │ │ ├── GetGiftVoucherQuery.cs │ │ │ ├── GetMerchandiseReturnCountQuery.cs │ │ │ ├── GetMerchandiseReturnQuery.cs │ │ │ ├── GetOrderQuery.cs │ │ │ ├── GetPaymentTransactionQuery.cs │ │ │ ├── GetPickupPointById.cs │ │ │ ├── GetVendorsInOrderQuery.cs │ │ │ └── IsMerchandiseReturnAllowedQuery.cs │ ├── Services │ │ ├── CheckoutAttributes │ │ │ ├── CheckoutAttributeFormatter.cs │ │ │ ├── CheckoutAttributeParser.cs │ │ │ └── CheckoutAttributeService.cs │ │ ├── GiftVouchers │ │ │ └── GiftVoucherService.cs │ │ ├── Orders │ │ │ ├── LoyaltyPointsService.cs │ │ │ ├── MerchandiseReturnService.cs │ │ │ ├── OrderCalculationService.cs │ │ │ ├── OrderService.cs │ │ │ ├── OrderStatusService.cs │ │ │ ├── OrderTagService.cs │ │ │ ├── ShoppingCartService.cs │ │ │ └── ShoppingCartValidator.cs │ │ ├── Payments │ │ │ ├── PaymentService.cs │ │ │ └── PaymentTransactionService.cs │ │ └── Shipping │ │ │ ├── DeliveryDateService.cs │ │ │ ├── GeneralShipmentTracker.cs │ │ │ ├── PickupPointService.cs │ │ │ ├── ShipmentService.cs │ │ │ ├── ShippingMethodService.cs │ │ │ ├── ShippingService.cs │ │ │ └── WarehouseService.cs │ ├── Startup │ │ └── StartupApplication.cs │ └── Utilities │ │ ├── AppliedGiftVoucher.cs │ │ ├── CapturePaymentResult.cs │ │ ├── GetShippingOptionRequest.cs │ │ ├── GetShippingOptionResponse.cs │ │ ├── PlaceOrderContainter.cs │ │ ├── PlaceOrderResult.cs │ │ ├── ProcessPaymentResult.cs │ │ ├── RefundPaymentRequest.cs │ │ ├── RefundPaymentResult.cs │ │ ├── ShoppingCartValidatorOptions.cs │ │ └── VoidPaymentResult.cs ├── Grand.Business.Cms │ ├── Events │ │ └── BlogPostDeletedEventHandler.cs │ ├── Extensions │ │ └── BlogExtensions.cs │ ├── Grand.Business.Cms.csproj │ ├── Interfaces │ │ ├── IBlogService.cs │ │ ├── INewsService.cs │ │ ├── IPageLayoutService.cs │ │ ├── IPageService.cs │ │ ├── IWidgetProvider.cs │ │ └── IWidgetService.cs │ ├── Services │ │ ├── BlogService.cs │ │ ├── NewsService.cs │ │ ├── PageLayoutService.cs │ │ ├── PageService.cs │ │ └── WidgetService.cs │ └── Startup │ │ └── StartupApplication.cs ├── Grand.Business.Common │ ├── Events │ │ ├── GroupDeletedEventHandler.cs │ │ └── LanguageDeletedEventHandler.cs │ ├── Extensions │ │ ├── AddressAttributeExtensions.cs │ │ ├── AddressExtensions.cs │ │ ├── HistoryExtensions.cs │ │ ├── LoggingExtensions.cs │ │ ├── SeoExtensions.cs │ │ ├── TranslateExtensions.cs │ │ └── UserFieldExtensions.cs │ ├── Grand.Business.Common.csproj │ ├── Interfaces │ │ ├── Addresses │ │ │ ├── IAddressAttributeParser.cs │ │ │ └── IAddressAttributeService.cs │ │ ├── Configuration │ │ │ └── ISettingService.cs │ │ ├── Directory │ │ │ ├── IConsentCookie.cs │ │ │ ├── ICookiePreference.cs │ │ │ ├── ICountryService.cs │ │ │ ├── ICurrencyService.cs │ │ │ ├── IDateTimeService.cs │ │ │ ├── IExchangeRateService.cs │ │ │ ├── IGeoLookupService.cs │ │ │ ├── IGoogleAnalyticsService.cs │ │ │ ├── IGroupService.cs │ │ │ ├── IHistoryService.cs │ │ │ ├── IMeasureService.cs │ │ │ ├── ISearchTermService.cs │ │ │ └── IUserFieldService.cs │ │ ├── Localization │ │ │ ├── ILanguageService.cs │ │ │ └── ITranslationService.cs │ │ ├── Logging │ │ │ ├── IActivityKeywordsProvider.cs │ │ │ ├── ICustomerActivityService.cs │ │ │ └── ILogger.cs │ │ ├── Pdf │ │ │ ├── IPdfService.cs │ │ │ └── IViewRenderService.cs │ │ ├── Providers │ │ │ └── IExchangeRateProvider.cs │ │ ├── Security │ │ │ ├── IAclService.cs │ │ │ ├── IEncryptionService.cs │ │ │ ├── IPermissionProvider.cs │ │ │ └── IPermissionService.cs │ │ ├── Seo │ │ │ └── ISlugService.cs │ │ └── Stores │ │ │ └── IStoreService.cs │ ├── Services │ │ ├── Addresses │ │ │ ├── AddressAttributeParser.cs │ │ │ └── AddressAttributeService.cs │ │ ├── Configuration │ │ │ └── SettingService.cs │ │ ├── Directory │ │ │ ├── CookiePreference.cs │ │ │ ├── CountryService.cs │ │ │ ├── CurrencyService.cs │ │ │ ├── DateTimeService.cs │ │ │ ├── DateTimeSettings.cs │ │ │ ├── ExchangeRateService.cs │ │ │ ├── GeoLookupService.cs │ │ │ ├── GoogleAnalyticsService.cs │ │ │ ├── GroupService.cs │ │ │ ├── HistoryService.cs │ │ │ ├── MeasureService.cs │ │ │ ├── SearchTermService.cs │ │ │ └── UserFieldService.cs │ │ ├── Localization │ │ │ ├── LanguageService.cs │ │ │ └── TranslationService.cs │ │ ├── Logging │ │ │ ├── ActivityKeywordsProvider.cs │ │ │ ├── CustomerActivityService.cs │ │ │ └── DefaultLogger.cs │ │ ├── Pdf │ │ │ ├── ViewRenderService.cs │ │ │ └── WkPdfService.cs │ │ ├── Security │ │ │ ├── AclService.cs │ │ │ ├── EncryptionService.cs │ │ │ ├── PermissionActionName.cs │ │ │ ├── PermissionProvider.cs │ │ │ ├── PermissionService.cs │ │ │ ├── PermissionSystemName.cs │ │ │ ├── StandardPermission.cs │ │ │ ├── StandardPermissionCatalog.cs │ │ │ ├── StandardPermissionConfiguration.cs │ │ │ ├── StandardPermissionContent.cs │ │ │ ├── StandardPermissionCustomer.cs │ │ │ ├── StandardPermissionMarketing.cs │ │ │ ├── StandardPermissionOrder.cs │ │ │ ├── StandardPermissionPublicStore.cs │ │ │ ├── StandardPermissionReport.cs │ │ │ └── StandardPermissionSystem.cs │ │ ├── Seo │ │ │ └── SlugService.cs │ │ └── Stores │ │ │ └── StoreService.cs │ ├── Startup │ │ └── StartupApplication.cs │ └── Utilities │ │ ├── GoogleAnalyticsResult.cs │ │ └── SearchTermReportLine.cs ├── Grand.Business.Customers │ ├── Commands │ │ ├── Handlers │ │ │ └── ActiveVendorCommandHandler.cs │ │ └── Models │ │ │ └── ActiveVendorCommand.cs │ ├── Events │ │ ├── CustomerLoggedInEvent.cs │ │ ├── CustomerLoggedOutEvent.cs │ │ ├── CustomerRegisteredEvent.cs │ │ ├── CustomerRegistrationEvent.cs │ │ ├── VendorActivationEvent.cs │ │ └── VendorReviewApprovedEvent.cs │ ├── Extensions │ │ ├── AffiliateExtensions.cs │ │ ├── CustomerAttributeExtensions.cs │ │ └── NotificationsExtensions.cs │ ├── Grand.Business.Customers.csproj │ ├── Interfaces │ │ ├── IAffiliateService.cs │ │ ├── ICustomerAttributeParser.cs │ │ ├── ICustomerAttributeService.cs │ │ ├── ICustomerHistoryPasswordService.cs │ │ ├── ICustomerManagerService.cs │ │ ├── ICustomerNoteService.cs │ │ ├── ICustomerService.cs │ │ ├── ISalesEmployeeService.cs │ │ ├── IUserApiService.cs │ │ └── IVendorService.cs │ ├── Queries │ │ ├── Handlers │ │ │ ├── GetCustomerQueryHandler.cs │ │ │ ├── GetGroupBySystemNameQueryHandler.cs │ │ │ └── GetPasswordIsExpiredQueryHandler.cs │ │ └── Models │ │ │ ├── GetCustomerQuery.cs │ │ │ ├── GetGroupBySystemNameQuery.cs │ │ │ └── GetPasswordIsExpiredQuery.cs │ ├── Services │ │ ├── AffiliateService.cs │ │ ├── CustomerAttributeParser.cs │ │ ├── CustomerAttributeService.cs │ │ ├── CustomerHistoryPasswordService.cs │ │ ├── CustomerManagerService.cs │ │ ├── CustomerNoteService.cs │ │ ├── CustomerService.cs │ │ ├── SalesEmployeeService.cs │ │ ├── UserApiService.cs │ │ └── VendorService.cs │ ├── Startup │ │ └── StartupApplication.cs │ └── Utilities │ │ ├── ChangePasswordRequest.cs │ │ ├── ChangePasswordResult.cs │ │ ├── RegistrationRequest.cs │ │ └── RegistrationResult.cs ├── Grand.Business.Marketing │ ├── Commands │ │ ├── Handlers │ │ │ ├── CustomerActionEventConditionCommandHandler.cs │ │ │ ├── CustomerActionEventReactionCommandHandler.cs │ │ │ └── UpdateCustomerReminderHistoryCommandHandler.cs │ │ └── Models │ │ │ ├── CustomerActionEventConditionCommand.cs │ │ │ ├── CustomerActionEventReactionCommand.cs │ │ │ └── UpdateCustomerReminderHistoryCommand.cs │ ├── Events │ │ ├── AddToCartEventHandler.cs │ │ ├── CustomerCoordinatesEvent.cs │ │ ├── CustomerLoggedInEventHandler.cs │ │ ├── CustomerLoggedOutEventHandler.cs │ │ ├── EmailSubscribedEvent.cs │ │ ├── EmailUnsubscribedEvent.cs │ │ ├── OrderPaidEventHandler.cs │ │ └── OrderPlacedEventHandler.cs │ ├── Extensions │ │ ├── ContactAttributeExtensions.cs │ │ ├── KnowledgebaseExtensions.cs │ │ └── NewsletterPublisherExtensions.cs │ ├── Grand.Business.Marketing.csproj │ ├── Interfaces │ │ ├── Banners │ │ │ └── IBannerService.cs │ │ ├── Campaigns │ │ │ └── ICampaignService.cs │ │ ├── Contacts │ │ │ ├── IContactAttributeParser.cs │ │ │ ├── IContactAttributeService.cs │ │ │ ├── IContactUsService.cs │ │ │ ├── IInteractiveFormService.cs │ │ │ └── IPopupService.cs │ │ ├── Courses │ │ │ ├── ICourseActionService.cs │ │ │ ├── ICourseLessonService.cs │ │ │ ├── ICourseLevelService.cs │ │ │ ├── ICourseService.cs │ │ │ └── ICourseSubjectService.cs │ │ ├── Customers │ │ │ ├── ICustomerActionEventService.cs │ │ │ ├── ICustomerActionService.cs │ │ │ ├── ICustomerCoordinatesService.cs │ │ │ ├── ICustomerProductService.cs │ │ │ ├── ICustomerReminderService.cs │ │ │ └── ICustomerTagService.cs │ │ ├── Documents │ │ │ ├── IDocumentService.cs │ │ │ └── IDocumentTypeService.cs │ │ ├── Knowledgebase │ │ │ └── IKnowledgebaseService.cs │ │ ├── Newsletters │ │ │ ├── INewsLetterSubscriptionService.cs │ │ │ └── INewsletterCategoryService.cs │ │ └── PushNotifications │ │ │ └── IPushNotificationsService.cs │ ├── Services │ │ ├── Banners │ │ │ └── BannerService.cs │ │ ├── Campaigns │ │ │ └── CampaignService.cs │ │ ├── Contacts │ │ │ ├── ContactAttributeParser.cs │ │ │ ├── ContactAttributeService.cs │ │ │ ├── ContactUsService.cs │ │ │ ├── InteractiveFormService.cs │ │ │ └── PopupService.cs │ │ ├── Courses │ │ │ ├── CourseActionService.cs │ │ │ ├── CourseLessonService.cs │ │ │ ├── CourseLevelService.cs │ │ │ ├── CourseService.cs │ │ │ └── CourseSubjectService.cs │ │ ├── Customers │ │ │ ├── CustomerActionEventService.cs │ │ │ ├── CustomerActionService.cs │ │ │ ├── CustomerCoordinatesService.cs │ │ │ ├── CustomerProductService.cs │ │ │ ├── CustomerReminderService.cs │ │ │ └── CustomerTagService.cs │ │ ├── Documents │ │ │ ├── DocumentService.cs │ │ │ └── DocumentTypeService.cs │ │ ├── Knowledgebase │ │ │ └── KnowledgebaseService.cs │ │ ├── Newsletters │ │ │ ├── NewsLetterSubscriptionService.cs │ │ │ └── NewsletterCategoryService.cs │ │ └── PushNotifications │ │ │ └── PushNotificationsService.cs │ ├── Startup │ │ └── StartupApplication.cs │ └── Utilities │ │ └── JsonResponse.cs ├── Grand.Business.Messages │ ├── Commands │ │ ├── Handlers │ │ │ └── Common │ │ │ │ └── InsertContactUsCommandHandler.cs │ │ └── Models │ │ │ ├── Common │ │ │ └── InsertContactUsCommand.cs │ │ │ └── Tokens │ │ │ ├── GetAttributeCombinationTokensCommand.cs │ │ │ ├── GetAuctionTokensCommand.cs │ │ │ ├── GetGiftVoucherTokensCommand.cs │ │ │ ├── GetMerchandiseReturnTokensCommand.cs │ │ │ ├── GetOrderTokensCommand.cs │ │ │ ├── GetShipmentTokensCommand.cs │ │ │ ├── GetShoppingCartTokensCommand.cs │ │ │ ├── GetStoreTokensCommand.cs │ │ │ └── GetVendorTokensCommand.cs │ ├── DotLiquidDrops │ │ ├── LiquidAskQuestion.cs │ │ ├── LiquidAttributeCombination.cs │ │ ├── LiquidAuctions.cs │ │ ├── LiquidBlogComment.cs │ │ ├── LiquidContactUs.cs │ │ ├── LiquidCustomer.cs │ │ ├── LiquidEmail.cs │ │ ├── LiquidEmailAFriend.cs │ │ ├── LiquidExtensions.cs │ │ ├── LiquidGiftVoucher.cs │ │ ├── LiquidKnowledgebase.cs │ │ ├── LiquidMerchandiseReturn.cs │ │ ├── LiquidMerchandiseReturnItem.cs │ │ ├── LiquidNewsComment.cs │ │ ├── LiquidNewsLetterSubscription.cs │ │ ├── LiquidObjectBuilder.cs │ │ ├── LiquidOrder.cs │ │ ├── LiquidOrderItem.cs │ │ ├── LiquidOutOfStockSubscription.cs │ │ ├── LiquidProduct.cs │ │ ├── LiquidProductReview.cs │ │ ├── LiquidShipment.cs │ │ ├── LiquidShipmentItem.cs │ │ ├── LiquidShoppingCart.cs │ │ ├── LiquidShoppingCartItem.cs │ │ ├── LiquidStore.cs │ │ ├── LiquidVatValidationResult.cs │ │ ├── LiquidVendor.cs │ │ └── LiquidVendorReview.cs │ ├── Events │ │ ├── EntityTokensAddedEvent.cs │ │ └── MessageTokensAddedEvent.cs │ ├── Extensions │ │ └── MessagesEventPublisherExtensions.cs │ ├── Grand.Business.Messages.csproj │ ├── Interfaces │ │ ├── IEmailAccountService.cs │ │ ├── IEmailSender.cs │ │ ├── IMessageProviderService.cs │ │ ├── IMessageTemplateService.cs │ │ ├── IMessageTokenProvider.cs │ │ ├── IMimeMappingService.cs │ │ └── IQueuedEmailService.cs │ ├── Queries │ │ ├── Handlers │ │ │ ├── GetBidsByProductIdQueryHandler.cs │ │ │ ├── GetCustomerByIdQueryHandler.cs │ │ │ ├── GetProductByIdQueryHandler.cs │ │ │ └── GetVendorByIdQueryHandler.cs │ │ └── Models │ │ │ ├── GetBidsByProductIdQuery.cs │ │ │ ├── GetCustomerByIdQuery.cs │ │ │ ├── GetProductByIdQuery.cs │ │ │ └── GetVendorByIdQuery.cs │ ├── Services │ │ ├── EmailAccountService.cs │ │ ├── EmailSender.cs │ │ ├── MessageProviderService.cs │ │ ├── MessageTemplateNames.cs │ │ ├── MessageTemplateService.cs │ │ ├── MessageTokenProvider.cs │ │ ├── MimeMappingService.cs │ │ └── QueuedEmailService.cs │ ├── Startup │ │ └── StartupApplication.cs │ └── Utilities │ │ └── Token.cs ├── Grand.Business.Storage │ ├── Extensions │ │ └── Extensions.cs │ ├── Grand.Business.Storage.csproj │ ├── Interfaces │ │ ├── IDownloadService.cs │ │ ├── IFileStore.cs │ │ ├── IFileStoreEntry.cs │ │ ├── IMediaFileStore.cs │ │ └── IPictureService.cs │ ├── Services │ │ ├── AmazonPictureService.cs │ │ ├── AzurePictureService.cs │ │ ├── DefaultMediaFileStore.cs │ │ ├── DownloadService.cs │ │ ├── FileSystemStore.cs │ │ ├── FileSystemStoreEntry.cs │ │ └── PictureService.cs │ └── Startup │ │ └── StartupApplication.cs └── Grand.Business.System │ ├── Commands │ ├── Handlers │ │ ├── Catalog │ │ │ ├── SendNotificationsToSubscribersCommandHandler.cs │ │ │ ├── SendOutBidCustomerNotificationCommandHandler.cs │ │ │ └── SendQuantityBelowStoreOwnerNotificationCommandHandler.cs │ │ ├── Common │ │ │ ├── ClearMostViewedCommandHandler.cs │ │ │ ├── DeleteActivitylogCommandHandler.cs │ │ │ └── GetSitemapXMLCommandHandler.cs │ │ ├── Messages │ │ │ ├── GetAttributeCombinationTokensCommandHandler.cs │ │ │ ├── GetAuctionTokensCommandHandler.cs │ │ │ ├── GetGiftVoucherTokensCommandHandler.cs │ │ │ ├── GetMerchandiseReturnTokensCommandHandler.cs │ │ │ ├── GetOrderTokensCommandHandler.cs │ │ │ ├── GetShipmentTokensCommandHandler.cs │ │ │ ├── GetShoppingCartTokensCommandHandler.cs │ │ │ ├── GetStoreTokensCommandHandler.cs │ │ │ └── GetVendorTokensCommandHandler.cs │ │ └── Security │ │ │ ├── InstallNewPermissionsCommandHandler.cs │ │ │ ├── InstallPermissionsCommandHandler.cs │ │ │ └── UninstallPermissionsCommandHandler.cs │ └── Models │ │ ├── Common │ │ ├── ClearMostViewedCommand.cs │ │ ├── DeleteActivitylogCommand.cs │ │ └── GetSitemapXmlCommand.cs │ │ └── Security │ │ ├── InstallNewPermissionsCommand.cs │ │ ├── InstallPermissionsCommand.cs │ │ └── UninstallPermissionsCommand.cs │ ├── Grand.Business.System.csproj │ ├── Interfaces │ ├── Admin │ │ └── IAdminSiteMapService.cs │ ├── ExportImport │ │ ├── IExportManager.cs │ │ └── IImportManager.cs │ ├── Installation │ │ ├── IInstallationLocalizedService.cs │ │ └── IInstallationService.cs │ ├── MachineNameProvider │ │ └── IMachineNameProvider.cs │ ├── Reports │ │ ├── ICustomerReportService.cs │ │ ├── IOrderReportService.cs │ │ └── IProductsReportService.cs │ └── ScheduleTasks │ │ ├── IScheduleTask.cs │ │ └── IScheduleTaskService.cs │ ├── Services │ ├── Admin │ │ └── AdminSiteMapService.cs │ ├── BackgroundServices │ │ ├── BackgroundServiceTask.cs │ │ └── ScheduleTasks │ │ │ ├── CancelOrderScheduledTask.cs │ │ │ ├── ClearCacheScheduleTask.cs │ │ │ ├── ClearLogScheduleTask.cs │ │ │ ├── CustomerReminderAbandonedCartScheduleTask.cs │ │ │ ├── CustomerReminderBirthdayScheduleTask.cs │ │ │ ├── CustomerReminderCompletedOrderScheduleTask.cs │ │ │ ├── CustomerReminderLastActivityScheduleTask.cs │ │ │ ├── CustomerReminderLastPurchaseScheduleTask.cs │ │ │ ├── CustomerReminderRegisteredCustomerScheduleTask.cs │ │ │ ├── CustomerReminderUnpaidOrderScheduleTask.cs │ │ │ ├── DeleteGuestsScheduleTask.cs │ │ │ ├── EndAuctionsTask.cs │ │ │ ├── GenerateSitemapXmlTask.cs │ │ │ ├── QueuedMessagesSendScheduleTask.cs │ │ │ ├── ScheduleTaskService.cs │ │ │ └── UpdateExchangeRateScheduleTask.cs │ ├── ExportImport │ │ ├── ExportManager.cs │ │ └── ImportManager.cs │ ├── Installation │ │ ├── InstallDataActivityLogTypes.cs │ │ ├── InstallDataAffiliates.cs │ │ ├── InstallDataBlogPosts.cs │ │ ├── InstallDataBrandLayouts.cs │ │ ├── InstallDataBrands.cs │ │ ├── InstallDataCategories.cs │ │ ├── InstallDataCategoryLayouts.cs │ │ ├── InstallDataCheckoutAttributes.cs │ │ ├── InstallDataCollectionLayouts.cs │ │ ├── InstallDataCountriesAndStates.cs │ │ ├── InstallDataCurrencies.cs │ │ ├── InstallDataCustomerActions.cs │ │ ├── InstallDataCustomersAndUsers.cs │ │ ├── InstallDataDeliveryDates.cs │ │ ├── InstallDataDiscounts.cs │ │ ├── InstallDataEmailAccounts.cs │ │ ├── InstallDataLanguages.cs │ │ ├── InstallDataLocaleResources.cs │ │ ├── InstallDataMeasures.cs │ │ ├── InstallDataMerchandiseReturnActions.cs │ │ ├── InstallDataMerchandiseReturnReasons.cs │ │ ├── InstallDataMessageTemplates.cs │ │ ├── InstallDataNews.cs │ │ ├── InstallDataOrderStatus.cs │ │ ├── InstallDataOrderTags.cs │ │ ├── InstallDataPageLayouts.cs │ │ ├── InstallDataPages.cs │ │ ├── InstallDataPickupPoints.cs │ │ ├── InstallDataProductAttributes.cs │ │ ├── InstallDataProductLayouts.cs │ │ ├── InstallDataProducts.cs │ │ ├── InstallDataScheduleTasks.cs │ │ ├── InstallDataSettings.cs │ │ ├── InstallDataShippingMethods.cs │ │ ├── InstallDataSpecificationAttributes.cs │ │ ├── InstallDataStores.cs │ │ ├── InstallDataTaxCategories.cs │ │ ├── InstallDataVendors.cs │ │ ├── InstallDataWarehouses.cs │ │ ├── InstallationLocalizedService.cs │ │ └── InstallationService.cs │ ├── MachineNameProvider │ │ ├── AzureWebAppsMachineNameProvider.cs │ │ └── DefaultMachineNameProvider.cs │ └── Reports │ │ ├── CustomerReportService.cs │ │ ├── OrderReportService.cs │ │ └── ProductsReportService.cs │ ├── Startup │ └── StartupApplication.cs │ └── Utilities │ ├── BestCustomerReportLine.cs │ ├── BestsellersReportLine.cs │ ├── CustomerByTimeReportLine.cs │ ├── DownloadUrl.cs │ ├── InstallationLanguage.cs │ ├── OrderAverageReportLine.cs │ ├── OrderAverageReportLineSummary.cs │ ├── OrderByCountryReportLine.cs │ ├── OrderByTimeReportLine.cs │ ├── ProductsAttributeCombination.cs │ ├── PropertyByName.cs │ ├── PropertyHelperList.cs │ ├── PropertyManager.cs │ ├── ReportPeriodOrder.cs │ └── StandardAdminSiteMap.cs ├── Core ├── Grand.Domain │ ├── Admin │ │ ├── AdminSearchSettings.cs │ │ └── AdminSiteMap.cs │ ├── Affiliates │ │ └── Affiliate.cs │ ├── BaseEntity.cs │ ├── Blogs │ │ ├── BlogCategory.cs │ │ ├── BlogCategoryPost.cs │ │ ├── BlogComment.cs │ │ ├── BlogExtensions.cs │ │ ├── BlogPost.cs │ │ ├── BlogPostTag.cs │ │ ├── BlogProduct.cs │ │ └── BlogSettings.cs │ ├── Catalog │ │ ├── AttributeControlType.cs │ │ ├── AttributeValueType.cs │ │ ├── BackorderMode.cs │ │ ├── Bid.cs │ │ ├── Brand.cs │ │ ├── BrandLayout.cs │ │ ├── BundleProduct.cs │ │ ├── CatalogSettings.cs │ │ ├── Category.cs │ │ ├── CategoryLayout.cs │ │ ├── Collection.cs │ │ ├── CollectionLayout.cs │ │ ├── CrossSellProduct.cs │ │ ├── CustomerReservationsHelper.cs │ │ ├── DownloadActivationType.cs │ │ ├── GiftVoucherType.cs │ │ ├── IntervalUnit.cs │ │ ├── InventoryJournal.cs │ │ ├── LowStockActivity.cs │ │ ├── ManageInventoryMethod.cs │ │ ├── MerchandiseReturnAction.cs │ │ ├── OutOfStockSubscription.cs │ │ ├── PredefinedProductAttributeValue.cs │ │ ├── Product.cs │ │ ├── ProductAlsoPurchased.cs │ │ ├── ProductAttribute.cs │ │ ├── ProductAttributeCombination.cs │ │ ├── ProductAttributeMapping.cs │ │ ├── ProductAttributeValue.cs │ │ ├── ProductCategory.cs │ │ ├── ProductCollection.cs │ │ ├── ProductCombinationTierPrices.cs │ │ ├── ProductCombinationWarehouseInventory.cs │ │ ├── ProductDeleted.cs │ │ ├── ProductExtensions.cs │ │ ├── ProductLayout.cs │ │ ├── ProductPicture.cs │ │ ├── ProductPrice.cs │ │ ├── ProductReservation.cs │ │ ├── ProductReview.cs │ │ ├── ProductReviewHelpfulness.cs │ │ ├── ProductSortingEnum.cs │ │ ├── ProductSpecificationAttribute.cs │ │ ├── ProductTag.cs │ │ ├── ProductType.cs │ │ ├── ProductWarehouseInventory.cs │ │ ├── RecentlyViewedProduct.cs │ │ ├── RecurringCyclePeriod.cs │ │ ├── RelatedProduct.cs │ │ ├── SimilarProduct.cs │ │ ├── SpecificationAttribute.cs │ │ ├── SpecificationAttributeOption.cs │ │ ├── SpecificationAttributeOptionFilter.cs │ │ ├── SpecificationAttributeType.cs │ │ └── TierPrice.cs │ ├── Cms │ │ └── WidgetSettings.cs │ ├── Common │ │ ├── Address.cs │ │ ├── AddressAttribute.cs │ │ ├── AddressAttributeValue.cs │ │ ├── AddressSettings.cs │ │ ├── AddressType.cs │ │ ├── AdminAreaSettings.cs │ │ ├── CommonSettings.cs │ │ ├── CustomAttribute.cs │ │ ├── DisplayOrderHomePage.cs │ │ ├── GeoCoordinates.cs │ │ ├── GrandNodeVersion.cs │ │ ├── MenuItemSettings.cs │ │ ├── PdfSettings.cs │ │ ├── Reference.cs │ │ ├── SearchTerm.cs │ │ ├── SystemSettings.cs │ │ ├── UserField.cs │ │ ├── UserFieldBaseEntity.cs │ │ └── UserFieldExtensions.cs │ ├── Configuration │ │ ├── ISettings.cs │ │ └── Setting.cs │ ├── Courses │ │ ├── Course.cs │ │ ├── CourseAction.cs │ │ ├── CourseLesson.cs │ │ ├── CourseLevel.cs │ │ ├── CourseSettings.cs │ │ └── CourseSubject.cs │ ├── Customers │ │ ├── Customer.cs │ │ ├── CustomerAction.cs │ │ ├── CustomerActionEnum.cs │ │ ├── CustomerActionHistory.cs │ │ ├── CustomerActionType.cs │ │ ├── CustomerAttribute.cs │ │ ├── CustomerAttributeValue.cs │ │ ├── CustomerExtensions.cs │ │ ├── CustomerGroup.cs │ │ ├── CustomerGroupProduct.cs │ │ ├── CustomerHistoryPassword.cs │ │ ├── CustomerLoginResults.cs │ │ ├── CustomerNameFormat.cs │ │ ├── CustomerNote.cs │ │ ├── CustomerProduct.cs │ │ ├── CustomerProductPrice.cs │ │ ├── CustomerReminder.cs │ │ ├── CustomerReminderEnum.cs │ │ ├── CustomerReminderHistory.cs │ │ ├── CustomerSettings.cs │ │ ├── CustomerTag.cs │ │ ├── CustomerTagProduct.cs │ │ ├── ExternalAuthentication.cs │ │ ├── ExternalAuthenticationSettings.cs │ │ ├── HashedPasswordFormat.cs │ │ ├── PasswordFormat.cs │ │ ├── SalesEmployee.cs │ │ ├── SystemCustomerFieldNames.cs │ │ ├── SystemCustomerGroupNames.cs │ │ ├── SystemCustomerNames.cs │ │ ├── TwoFactorAuthenticationType.cs │ │ ├── UserApi.cs │ │ └── UserRegistrationType.cs │ ├── Data │ │ ├── DataSettings.cs │ │ ├── DataSettingsManager.cs │ │ ├── DbProvider.cs │ │ ├── IDatabaseContext.cs │ │ ├── IRepository.cs │ │ ├── Mongo │ │ │ ├── BsonUtcDateTimeSerializer.cs │ │ │ ├── MongoDBContext.cs │ │ │ ├── MongoDBMapperConfiguration.cs │ │ │ └── MongoRepository.cs │ │ ├── OrderBuilder.cs │ │ ├── UniqueIdentifier.cs │ │ └── UpdateBuilder.cs │ ├── Directory │ │ ├── Country.cs │ │ ├── Currency.cs │ │ ├── CurrencySettings.cs │ │ ├── ExchangeRate.cs │ │ ├── MeasureDimension.cs │ │ ├── MeasureSettings.cs │ │ ├── MeasureUnit.cs │ │ ├── MeasureWeight.cs │ │ ├── RoundingType.cs │ │ └── StateProvince.cs │ ├── Discounts │ │ ├── Discount.cs │ │ ├── DiscountCoupon.cs │ │ ├── DiscountLimitationType.cs │ │ ├── DiscountRule.cs │ │ ├── DiscountType.cs │ │ └── DiscountUsageHistory.cs │ ├── Documents │ │ ├── Document.cs │ │ ├── DocumentSettings.cs │ │ ├── DocumentStatus.cs │ │ └── DocumentType.cs │ ├── Grand.Domain.csproj │ ├── History │ │ ├── HistoryObject.cs │ │ └── IHistory.cs │ ├── IPagedList.cs │ ├── Knowledgebase │ │ ├── ITreeNode.cs │ │ ├── KnowledgebaseArticle.cs │ │ ├── KnowledgebaseArticleComment.cs │ │ ├── KnowledgebaseCategory.cs │ │ └── KnowledgebaseSettings.cs │ ├── Localization │ │ ├── ITranslationEntity.cs │ │ ├── Language.cs │ │ ├── LanguageSettings.cs │ │ ├── TranslationEntity.cs │ │ └── TranslationResource.cs │ ├── Logging │ │ ├── ActivityLog.cs │ │ ├── ActivityLogType.cs │ │ ├── Log.cs │ │ └── LogLevel.cs │ ├── Media │ │ ├── Download.cs │ │ ├── MediaSettings.cs │ │ └── Picture.cs │ ├── Messages │ │ ├── Banner.cs │ │ ├── Campaign.cs │ │ ├── CampaignCondition.cs │ │ ├── CampaignCustomerSubscription.cs │ │ ├── CampaignHistory.cs │ │ ├── ContactAttribute.cs │ │ ├── ContactAttributeValue.cs │ │ ├── ContactUs.cs │ │ ├── EmailAccount.cs │ │ ├── EmailAccountSettings.cs │ │ ├── FormControlType.cs │ │ ├── InteractiveForm.cs │ │ ├── LiquidObject.cs │ │ ├── MessageDelayPeriod.cs │ │ ├── MessageTemplate.cs │ │ ├── NewsLetterSubscription.cs │ │ ├── NewsletterCategory.cs │ │ ├── PopupActive.cs │ │ ├── PopupArchive.cs │ │ ├── PopupType.cs │ │ ├── QueuedEmail.cs │ │ └── QueuedEmailPriority.cs │ ├── News │ │ ├── NewsComment.cs │ │ ├── NewsItem.cs │ │ └── NewsSettings.cs │ ├── Orders │ │ ├── CheckoutAttribute.cs │ │ ├── CheckoutAttributeValue.cs │ │ ├── GiftVoucher.cs │ │ ├── GiftVoucherExtensions.cs │ │ ├── GiftVoucherUsageHistory.cs │ │ ├── LoyaltyPointsHistory.cs │ │ ├── LoyaltyPointsSettings.cs │ │ ├── MerchandiseReturn.cs │ │ ├── MerchandiseReturnItem.cs │ │ ├── MerchandiseReturnNote.cs │ │ ├── MerchandiseReturnReason.cs │ │ ├── MerchandiseReturnStatus.cs │ │ ├── Order.cs │ │ ├── OrderItem.cs │ │ ├── OrderItemStatus.cs │ │ ├── OrderNote.cs │ │ ├── OrderSettings.cs │ │ ├── OrderStatus.cs │ │ ├── OrderStatusSystem.cs │ │ ├── OrderTag.cs │ │ ├── OrderTax.cs │ │ ├── ShoppingCartItem.cs │ │ ├── ShoppingCartSettings.cs │ │ └── ShoppingCartType.cs │ ├── PagedList.cs │ ├── Pages │ │ ├── Page.cs │ │ └── PageLayout.cs │ ├── ParentEntity.cs │ ├── Payments │ │ ├── PaymentRestictedSettings.cs │ │ ├── PaymentSettings.cs │ │ ├── PaymentStatus.cs │ │ ├── PaymentTransaction.cs │ │ └── TransactionStatus.cs │ ├── Permissions │ │ ├── DefaultPermission.cs │ │ ├── IGroupLinkEntity.cs │ │ ├── Permission.cs │ │ └── PermissionAction.cs │ ├── PushNotifications │ │ ├── PushMessage.cs │ │ ├── PushNotificationsSettings.cs │ │ └── PushRegistration.cs │ ├── Security │ │ ├── RefreshToken.cs │ │ └── SecuritySettings.cs │ ├── Seo │ │ ├── EntityUrl.cs │ │ ├── GoogleAnalyticsSettings.cs │ │ ├── ISlugEntity.cs │ │ └── SeoSettings.cs │ ├── Shipping │ │ ├── DeliveryDate.cs │ │ ├── PickupPoints.cs │ │ ├── Shipment.cs │ │ ├── ShipmentItem.cs │ │ ├── ShipmentNote.cs │ │ ├── ShippingMethod.cs │ │ ├── ShippingOption.cs │ │ ├── ShippingProviderSettings.cs │ │ ├── ShippingSettings.cs │ │ ├── ShippingStatus.cs │ │ └── Warehouse.cs │ ├── Stores │ │ ├── IStoreLinkEntity.cs │ │ ├── Store.cs │ │ ├── StoreExtensions.cs │ │ └── StoreInformationSettings.cs │ ├── SubBaseEntity.cs │ ├── Tasks │ │ └── ScheduleTask.cs │ ├── Tax │ │ ├── TaxBasedOn.cs │ │ ├── TaxCategory.cs │ │ ├── TaxDisplayType.cs │ │ ├── TaxProviderSettings.cs │ │ ├── TaxSettings.cs │ │ └── VatNumberStatus.cs │ └── Vendors │ │ ├── Vendor.cs │ │ ├── VendorNote.cs │ │ ├── VendorReview.cs │ │ ├── VendorReviewHelpfulness.cs │ │ └── VendorSettings.cs ├── Grand.Infrastructure │ ├── Caching │ │ ├── Constants │ │ │ ├── AddressCacheKey.cs │ │ │ ├── BrandCacheKey.cs │ │ │ ├── CategoryCacheKey.cs │ │ │ ├── CollectionCacheKey.cs │ │ │ ├── CommonCacheKey.cs │ │ │ ├── CustomerCacheKey.cs │ │ │ ├── DirectoryCacheKey.cs │ │ │ ├── GrandNodeVersionCacheKey.cs │ │ │ ├── KnowledgebaseCacheKey.cs │ │ │ ├── LayoutCacheKey.cs │ │ │ ├── MerchandiseReturnCacheKey.cs │ │ │ ├── MessagesCacheKey.cs │ │ │ ├── OrdersCacheKeys.cs │ │ │ ├── ProductAttributeCacheKey.cs │ │ │ ├── ProductCacheKey.cs │ │ │ ├── SecurityCacheKey.cs │ │ │ ├── ShippingCacheKeys.cs │ │ │ └── SpecificationAttributeCacheKey.cs │ │ ├── ICacheBase.cs │ │ ├── MemoryCacheBase.cs │ │ ├── MemoryCacheExtensions.cs │ │ ├── Message │ │ │ ├── CacheMessageEvent.cs │ │ │ ├── IMessageBus.cs │ │ │ ├── IMessageEvent.cs │ │ │ ├── IMessageEventClient.cs │ │ │ ├── IMessagePublisher.cs │ │ │ ├── IMessageSubscriber.cs │ │ │ ├── MessageEvent.cs │ │ │ ├── MessageEventClient.cs │ │ │ └── MessageEventType.cs │ │ ├── RabbitMq │ │ │ ├── CacheMessageEventConsumer.cs │ │ │ └── RabbitMqMessageCacheManager.cs │ │ └── Redis │ │ │ ├── RedisMessageBus.cs │ │ │ └── RedisMessageCacheManager.cs │ ├── Configuration │ │ ├── ApiConfig.cs │ │ ├── AppConfig.cs │ │ ├── GrandWebApiConfig.cs │ │ └── HostingConfig.cs │ ├── Endpoints │ │ └── IEndpointProvider.cs │ ├── Events │ │ ├── CacheEvent.cs │ │ ├── EntityCacheEvent.cs │ │ ├── EntityDeleted.cs │ │ ├── EntityInserted.cs │ │ └── EntityUpdated.cs │ ├── Extensions │ │ ├── CommonExtensions.cs │ │ ├── EventPublisherExtensions.cs │ │ └── ProviderExtensions.cs │ ├── Grand.Infrastructure.csproj │ ├── GrandVersion.cs │ ├── IStartupApplication.cs │ ├── IStartupTask.cs │ ├── IStoreHelper.cs │ ├── IWorkContext.cs │ ├── Mapper │ │ ├── AutoMapperConfig.cs │ │ ├── IAutoMapperProfile.cs │ │ └── MappingExtensions.cs │ ├── ModelBinding │ │ ├── GrandResourceDisplayNameAttribute.cs │ │ └── IModelAttribute.cs │ ├── Models │ │ ├── BaseEntityModel.cs │ │ └── BaseModel.cs │ ├── OperatingSystem.cs │ ├── Plugins │ │ ├── BasePlugin.cs │ │ ├── IPlugin.cs │ │ ├── IProvider.cs │ │ ├── LoadPluginsStatus.cs │ │ ├── PluginExtensions.cs │ │ ├── PluginInfo.cs │ │ ├── PluginInfoAttribute.cs │ │ ├── PluginManager.cs │ │ └── ThemeInfo.cs │ ├── Roslyn │ │ ├── ResultCompiler.cs │ │ └── RoslynCompiler.cs │ ├── Startup │ │ └── StartupApplication.cs │ ├── StartupBase.cs │ ├── TypeConverters │ │ ├── Converter │ │ │ ├── BoolTypeConverter.cs │ │ │ ├── CustomAttributeListTypeConverter.cs │ │ │ ├── GenericDictionaryTypeConverter.cs │ │ │ ├── GenericListTypeConverter.cs │ │ │ ├── RefreshTokenTypeConverter.cs │ │ │ ├── ShippingOptionListTypeConverter.cs │ │ │ └── ShippingOptionTypeConverter.cs │ │ ├── ITypeConverter.cs │ │ └── WebTypeConverter.cs │ ├── TypeSearcher │ │ ├── AppTypeSearcher.cs │ │ ├── ITypeSearcher.cs │ │ └── TypeSearcher.cs │ └── Validators │ │ ├── BaseGrandValidator.cs │ │ └── IValidatorConsumer.cs └── Grand.SharedKernel │ ├── Extensions │ ├── CommonHelper.cs │ ├── CommonPath.cs │ ├── ExtendedLinq.cs │ └── FormatText.cs │ ├── Grand.SharedKernel.csproj │ └── GrandException.cs ├── Plugins ├── Authentication.Facebook │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── FacebookAuthenticationSettingsController.cs │ │ │ └── Views │ │ │ ├── FacebookAuthenticationSettings │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── Assets │ │ ├── Images │ │ │ └── facebook-signing.png │ │ └── facebookstyles.css │ ├── Authentication.Facebook.csproj │ ├── Components │ │ └── FacebookAuthentication.cs │ ├── Controllers │ │ └── FacebookAuthenticationController.cs │ ├── EndpointProvider.cs │ ├── FacebookAuthConfig.cs │ ├── FacebookAuthenticationDefaults.cs │ ├── FacebookAuthenticationPlugin.cs │ ├── FacebookAuthenticationProvider.cs │ ├── FacebookExternalAuthSettings.cs │ ├── Infrastructure │ │ ├── Cache │ │ │ └── FacebookAuthenticationEventConsumer.cs │ │ ├── FacebookAuthenticationBuilder.cs │ │ └── StartupApplication.cs │ ├── Manifest.cs │ ├── Models │ │ ├── ConfigurationModel.cs │ │ └── FailedModel.cs │ ├── Views │ │ ├── FacebookAuthentication │ │ │ └── FacebookSignInFailed.cshtml │ │ ├── Shared │ │ │ └── Components │ │ │ │ └── FacebookAuthentication │ │ │ │ └── Default.cshtml │ │ └── _ViewImports.cshtml │ └── logo.jpg ├── Authentication.Google │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── GoogleAuthenticationSettingsController.cs │ │ │ ├── Views │ │ │ └── GoogleAuthenticationSettings │ │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── Assets │ │ ├── Images │ │ │ └── google-signing.png │ │ └── googlestyles.css │ ├── Authentication.Google.csproj │ ├── Components │ │ └── GoogleAuthenticationViewComponent.cs │ ├── Controllers │ │ └── GoogleAuthenticationController.cs │ ├── EndpointProvider.cs │ ├── GoogleAuthenticationDefaults.cs │ ├── GoogleAuthenticationPlugin.cs │ ├── GoogleAuthenticationProvider.cs │ ├── GoogleExternalAuthSettings.cs │ ├── Infrastructure │ │ ├── GoogleAuthenticationBuilder.cs │ │ ├── GoogleAuthenticationEventConsumer.cs │ │ └── StartupApplication.cs │ ├── Manifest.cs │ ├── Models │ │ ├── ConfigurationModel.cs │ │ └── FailedModel.cs │ ├── Views │ │ ├── GoogleAuthentication │ │ │ └── GoogleSignInFailed.cshtml │ │ ├── Shared │ │ │ └── Components │ │ │ │ └── GoogleAuthentication │ │ │ │ └── Default.cshtml │ │ └── _ViewImports.cshtml │ └── logo.jpg ├── DiscountRules.Standard │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ ├── CustomerGroupsController.cs │ │ │ ├── HadSpentAmountController.cs │ │ │ ├── HasAllProductsController.cs │ │ │ ├── HasOneProductController.cs │ │ │ └── ShoppingCartAmountController.cs │ │ │ └── Views │ │ │ ├── CustomerGroups │ │ │ └── Configure.cshtml │ │ │ ├── HadSpentAmount │ │ │ └── Configure.cshtml │ │ │ ├── HasAllProducts │ │ │ ├── Configure.cshtml │ │ │ └── ProductAddPopup.cshtml │ │ │ ├── HasOneProduct │ │ │ ├── Configure.cshtml │ │ │ └── ProductAddPopup.cshtml │ │ │ ├── ShoppingCartAmount │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── DiscountPlugin.cs │ ├── DiscountProvider.cs │ ├── DiscountRules.Standard.csproj │ ├── EndpointProvider.cs │ ├── Manifest.cs │ ├── Models │ │ ├── RequirementCustomerGroup.cs │ │ ├── RequirementHadSpentAmount.cs │ │ ├── RequirementModel.cs │ │ ├── RequirementProducts.cs │ │ └── RequirementSpentAmount.cs │ ├── Providers │ │ ├── CustomerGroupDiscountRule.cs │ │ ├── HadSpentAmountDiscountRule.cs │ │ ├── HasAllProductsDiscountRule.cs │ │ ├── HasOneProductDiscountRule.cs │ │ └── ShoppingCartDiscountRule.cs │ ├── StartupApplication.cs │ └── logo.jpg ├── ExchangeRate.McExchange │ ├── EcbExchange.cs │ ├── ExchangeRate.McExchange.csproj │ ├── IRateProvider.cs │ ├── Manifest.cs │ ├── McExchangeRatePlugin.cs │ ├── McExchangeRateProvider.cs │ ├── NbpExchange.cs │ ├── StartupApplication.cs │ └── logo.jpg ├── Payments.BrainTree │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── PaymentBrainTreeController.cs │ │ │ └── Views │ │ │ ├── PaymentBrainTree │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── BrainTreeDefaults.cs │ ├── BrainTreePaymentPlugin.cs │ ├── BrainTreePaymentProvider.cs │ ├── BrainTreePaymentSettings.cs │ ├── BrainTreeWidgetProvider.cs │ ├── Components │ │ ├── PaymentBrainTreeScripts.cs │ │ └── PaymentBrainTreeViewComponent.cs │ ├── Manifest.cs │ ├── Models │ │ ├── ConfigurationModel.cs │ │ └── PaymentInfoModel.cs │ ├── Payments.BrainTree.csproj │ ├── StartupApplication.cs │ ├── Validators │ │ └── PaymentInfoValidator.cs │ ├── Views │ │ ├── Shared │ │ │ └── Components │ │ │ │ ├── PaymentBrainTree │ │ │ │ ├── PaymentInfo.cshtml │ │ │ │ └── PaymentInfo_3DS.cshtml │ │ │ │ └── PaymentBrainTreeScripts │ │ │ │ └── Default.cshtml │ │ └── _ViewImports.cshtml │ └── logo.jpg ├── Payments.CashOnDelivery │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── PaymentCashOnDeliveryController.cs │ │ │ └── Views │ │ │ ├── PaymentCashOnDelivery │ │ │ └── Configure.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ ├── CashOnDeliveryPaymentDefaults.cs │ ├── CashOnDeliveryPaymentPlugin.cs │ ├── CashOnDeliveryPaymentProvider.cs │ ├── CashOnDeliveryPaymentSettings.cs │ ├── Components │ │ └── PaymentCashOnDeliveryViewComponent.cs │ ├── Manifest.cs │ ├── Models │ │ ├── ConfigurationModel.cs │ │ └── PaymentInfoModel.cs │ ├── Payments.CashOnDelivery.csproj │ ├── StartupApplication.cs │ ├── Views │ │ └── Shared │ │ │ └── Components │ │ │ └── PaymentCashOnDelivery │ │ │ └── Default.cshtml │ └── logo.jpg ├── Payments.PayPalStandard │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── PayPalStandardController.cs │ │ │ └── Views │ │ │ ├── PayPalStandard │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── Components │ │ └── PaymentPayPalStandardViewComponent.cs │ ├── Controllers │ │ └── PaymentPayPalStandardController.cs │ ├── EndpointProvider.cs │ ├── Manifest.cs │ ├── Models │ │ └── ConfigurationModel.cs │ ├── PayPalStandardPaymentDefaults.cs │ ├── PayPalStandardPaymentPlugin.cs │ ├── PayPalStandardPaymentProvider.cs │ ├── PayPalStandardPaymentSettings.cs │ ├── Payments.PayPalStandard.csproj │ ├── PaypalHelper.cs │ ├── Services │ │ ├── IPaypalHttpClient.cs │ │ └── PaypalHttpClient.cs │ ├── StartupApplication.cs │ ├── Views │ │ ├── Shared │ │ │ └── Components │ │ │ │ └── PaymentPayPalStandard │ │ │ │ └── Default.cshtml │ │ └── _ViewImports.cshtml │ └── logo.jpg ├── Shipping.ByWeight │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── ShippingByWeightController.cs │ │ │ └── Views │ │ │ ├── ShippingByWeight │ │ │ ├── AddPopup.cshtml │ │ │ ├── Configure.cshtml │ │ │ ├── EditPopup.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ │ └── _ViewImports.cshtml │ ├── ByWeightShippingDefaults.cs │ ├── ByWeightShippingPlugin.cs │ ├── ByWeightShippingProvider.cs │ ├── ByWeightShippingSettings.cs │ ├── Domain │ │ └── ShippingByWeightRecord.cs │ ├── Manifest.cs │ ├── Models │ │ ├── ShippingByWeightListModel.cs │ │ └── ShippingByWeightModel.cs │ ├── Services │ │ ├── IShippingByWeightService.cs │ │ └── ShippingByWeightService.cs │ ├── Shipping.ByWeight.csproj │ ├── StartupApplication.cs │ └── logo.jpg ├── Shipping.FixedRateShipping │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── ShippingFixedRateController.cs │ │ │ └── Views │ │ │ └── ShippingFixedRate │ │ │ ├── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── FixedRateShippingDefaults.cs │ ├── FixedRateShippingPlugin.cs │ ├── FixedRateShippingProvider.cs │ ├── Manifest.cs │ ├── Models │ │ ├── FixedShippingRate.cs │ │ └── FixedShippingRateModel.cs │ ├── Shipping.FixedRateShipping.csproj │ ├── ShippingFixedRateSettings.cs │ ├── StartupApplication.cs │ └── logo.jpg ├── Shipping.ShippingPoint │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── ShippingPointController.cs │ │ │ └── Views │ │ │ ├── ShippingPoint │ │ │ ├── Configure.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ │ └── _ViewImports.cshtml │ ├── Components │ │ └── SelectedShippingPointViewComponent.cs │ ├── Controllers │ │ └── SelectedShippingPointController.cs │ ├── Domain │ │ ├── ShippingPointSerialization.cs │ │ └── ShippingPoints.cs │ ├── Manifest.cs │ ├── MapperConfiguration.cs │ ├── MappingExtensions.cs │ ├── Models │ │ ├── PointModel.cs │ │ └── ShippingPointModel.cs │ ├── Services │ │ ├── IShippingPointService.cs │ │ └── ShippingPointService.cs │ ├── Shipping.ShippingPoint.csproj │ ├── ShippingPointRateDefaults.cs │ ├── ShippingPointRatePlugin.cs │ ├── ShippingPointRateProvider.cs │ ├── ShippingPointRateSettings.cs │ ├── StartupApplication.cs │ ├── Validators │ │ └── ShippingPointValidator.cs │ ├── Views │ │ ├── SelectedShippingPoint │ │ │ └── Get.cshtml │ │ ├── Shared │ │ │ └── Components │ │ │ │ └── ShippingPoint │ │ │ │ └── Default.cshtml │ │ └── _ViewImports.cshtml │ └── logo.jpg ├── Tax.CountryStateZip │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── TaxCountryStateZipController.cs │ │ │ └── Views │ │ │ ├── TaxCountryStateZip │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── CountryStateZipTaxDefaults.cs │ ├── CountryStateZipTaxPlugin.cs │ ├── CountryStateZipTaxProvider.cs │ ├── CountryStateZipTaxSettings.cs │ ├── Domain │ │ └── TaxRate.cs │ ├── Infrastructure │ │ └── Cache │ │ │ ├── ModelCacheEventConsumer.cs │ │ │ └── TaxRateForCaching.cs │ ├── Manifest.cs │ ├── Models │ │ ├── TaxRateListModel.cs │ │ └── TaxRateModel.cs │ ├── Services │ │ ├── ITaxRateService.cs │ │ └── TaxRateService.cs │ ├── StartupApplication.cs │ ├── Tax.CountryStateZip.csproj │ └── logo.jpg ├── Tax.FixedRate │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── TaxFixedRateController.cs │ │ │ └── Views │ │ │ ├── TaxFixedRate │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── FixedRateTaxDefaults.cs │ ├── FixedRateTaxPlugin.cs │ ├── FixedRateTaxProvider.cs │ ├── Manifest.cs │ ├── Models │ │ ├── FixedTaxRate.cs │ │ └── FixedTaxRateModel.cs │ ├── StartupApplication.cs │ ├── Tax.FixedRate.csproj │ └── logo.jpg ├── Widgets.FacebookPixel │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── WidgetsFacebookPixelController.cs │ │ │ └── Views │ │ │ ├── WidgetsFacebookPixel │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── Components │ │ └── WidgetsFacebookPixelViewComponent.cs │ ├── FacebookPixelConsentCookie.cs │ ├── FacebookPixelDefaults.cs │ ├── FacebookPixelPlugin.cs │ ├── FacebookPixelProvider.cs │ ├── FacebookPixelSettings.cs │ ├── Manifest.cs │ ├── Models │ │ ├── ConfigurationModel.cs │ │ └── FacebookAddToCartModelModel.cs │ ├── StartupApplication.cs │ ├── Views │ │ └── Shared │ │ │ └── Components │ │ │ └── WidgetsFacebookPixel │ │ │ └── Default.cshtml │ ├── Widgets.FacebookPixel.csproj │ └── logo.jpg ├── Widgets.GoogleAnalytics │ ├── Areas │ │ └── Admin │ │ │ ├── Controllers │ │ │ └── WidgetsGoogleAnalyticsController.cs │ │ │ └── Views │ │ │ ├── WidgetsGoogleAnalytics │ │ │ └── Configure.cshtml │ │ │ └── _ViewImports.cshtml │ ├── Components │ │ └── WidgetsGoogleAnalyticsViewComponent.cs │ ├── GoogleAnalyticDefaults.cs │ ├── GoogleAnalyticPlugin.cs │ ├── GoogleAnalyticProvider.cs │ ├── GoogleAnalyticsConsentCookie.cs │ ├── GoogleAnalyticsEcommerceSettings.cs │ ├── Manifest.cs │ ├── Models │ │ └── ConfigurationModel.cs │ ├── StartupApplication.cs │ ├── Views │ │ └── Shared │ │ │ └── Components │ │ │ └── WidgetsGoogleAnalytics │ │ │ └── Default.cshtml │ ├── Widgets.GoogleAnalytics.csproj │ └── logo.jpg └── Widgets.Slider │ ├── Areas │ └── Admin │ │ ├── Controllers │ │ └── WidgetsSliderController.cs │ │ └── Views │ │ ├── WidgetsSlider │ │ ├── Configure.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _Settings.cshtml │ │ └── _ViewImports.cshtml │ ├── Assets │ ├── slider │ │ └── sample-images │ │ │ ├── banner1.png │ │ │ └── banner2.png │ └── vue-style.css │ ├── Components │ └── WidgetSliderComponent.cs │ ├── Domain │ ├── PictureSlider.cs │ └── SliderType.cs │ ├── Extensions.cs │ ├── Infrastructure │ └── Mapper │ │ └── SliderMapperConfiguration.cs │ ├── Manifest.cs │ ├── Models │ ├── ConfigurationModel.cs │ ├── PublicInfoModel.cs │ ├── SlideListModel.cs │ └── SlideModel.cs │ ├── Services │ ├── ISliderService.cs │ └── SliderService.cs │ ├── SliderWidgetDefaults.cs │ ├── SliderWidgetPlugin.cs │ ├── SliderWidgetProvider.cs │ ├── SliderWidgetSettings.cs │ ├── StartupApplication.cs │ ├── Validators │ └── SlideValidator.cs │ ├── Views │ ├── Shared │ │ └── Components │ │ │ └── WidgetSlider │ │ │ └── Default.cshtml │ └── _ViewImports.cshtml │ ├── Widgets.Slider.csproj │ └── logo.jpg ├── Tests ├── Grand.Business.Authentication.Tests │ ├── ApiAuthenticationServiceTests.cs │ ├── AuthSchemaMock.cs │ ├── CookieAuthenticationServiceTests.cs │ └── Grand.Business.Authentication.Tests.csproj ├── Grand.Business.Catalog.Tests │ ├── Extensions │ │ ├── ProductAttributeExtensionsTests.cs │ │ ├── ProductExtensionsTests.cs │ │ └── TierPriceExtensionsTests.cs │ ├── Grand.Business.Catalog.Tests.csproj │ ├── Handlers │ │ ├── UpdateIntervalPropertiesCommandHandlerTests.cs │ │ └── UpdateProductReviewTotalsCommandHandlerTest.cs │ └── Service │ │ ├── Category │ │ ├── CategoryLayoutServiceTest.cs │ │ └── CategoryServiceTests.cs │ │ ├── Collections │ │ └── CollectionServiceTests.cs │ │ ├── Prices │ │ ├── PriceFormatterTests.cs │ │ └── PriceServiceTests.cs │ │ ├── Products │ │ ├── CompareProductsServiceTests.cs │ │ ├── CopyProductServiceTests.cs │ │ ├── CustomerGroupProductServiceTests.cs │ │ ├── ProductAttributeParserTests.cs │ │ └── StockQuantityServiceTests.cs │ │ └── Tax │ │ ├── FixedRateTestTaxProvider.cs │ │ └── TaxServiceTests.cs ├── Grand.Business.Checkout.Tests │ ├── Commands │ │ └── Orders │ │ │ ├── ActivatedValueForPurchasedGiftVouchersCommandHandlerTests.cs │ │ │ ├── CalculateLoyaltyPointsCommandHandlerTests.cs │ │ │ ├── CancelOrderCommandHandlerTests.cs │ │ │ └── CheckOrderStatusCommandHandlerTests.cs │ ├── Extensions │ │ ├── CheckoutAttributeExtensionsTests.cs │ │ ├── OrderExtensionsTests.cs │ │ ├── PaymentExtensionsTests.cs │ │ ├── ShippingExtensionsTests.cs │ │ └── ShoppingCartExtensionsTests.cs │ ├── Grand.Business.Checkout.Tests.csproj │ └── Services │ │ ├── CheckoutAttributes │ │ ├── CheckoutAttributeParserTests.cs │ │ └── CheckoutAttributeServiceTests.cs │ │ ├── GiftVouchers │ │ └── GiftVoucherServiceTests.cs │ │ ├── Orders │ │ ├── OrderServiceTests.cs │ │ └── OrderStatusServiceTests.cs │ │ ├── Payments │ │ ├── PaymentServiceTests.cs │ │ └── PaymentTransactionServiceTests.cs │ │ └── Shipping │ │ ├── DeliveryDateServiceTests.cs │ │ ├── PickupPointServiceTests.cs │ │ ├── ShippingMethodServiceTests.cs │ │ ├── ShippingServiceTests.cs │ │ └── WarehouseServiceTests.cs ├── Grand.Business.Cms.Tests │ ├── Events │ │ └── BlogPostDeletedEventHandlerTests.cs │ ├── Extensions │ │ └── BlogExtensionsTests.cs │ ├── Grand.Business.Cms.Tests.csproj │ └── Services │ │ ├── BlogServiceTests.cs │ │ └── WidgetServiceTests.cs ├── Grand.Business.Common.Tests │ ├── Extensions │ │ ├── AddressAttributeExtensionsTests.cs │ │ ├── SeoExtensionsTests.cs │ │ └── TranslateExtensionsTests.cs │ ├── Grand.Business.Common.Tests.csproj │ └── Services │ │ ├── Addresses │ │ ├── AddressAttributeParserTests.cs │ │ └── AddressAttributeServiceTests.cs │ │ ├── Configuration │ │ └── SettingServiceTests.cs │ │ ├── Directory │ │ ├── CookiePreferenceTests.cs │ │ ├── CurrencyServiceTests.cs │ │ ├── ExchangeRateServiceTests.cs │ │ ├── HistoryServiceTests.cs │ │ ├── MeasureServiceTests.cs │ │ └── SearchTermServiceTests.cs │ │ ├── Security │ │ ├── AclServiceTest.cs │ │ ├── EncryptionServiceTests.cs │ │ └── PermissionServiceTests.cs │ │ └── Stores │ │ └── StoreServiceTests.cs ├── Grand.Business.Customers.Tests │ ├── Extensions │ │ └── AffiliateExtensionsTests.cs │ ├── Grand.Business.Customers.Tests.csproj │ ├── Handler │ │ └── ActiveVendorCommandHandlerTests.cs │ └── Services │ │ ├── AffiliateServiceTests.cs │ │ ├── CustomerAttributeParserTests.cs │ │ ├── CustomerAttributeServiceTests.cs │ │ ├── CustomerNoteServiceTests.cs │ │ ├── UserApiServiceTests.cs │ │ └── VendorServiceTests.cs ├── Grand.Business.Marketing.Tests │ ├── Extensions │ │ ├── ContactAttributeExtensionsTests.cs │ │ └── KnowledgebaseExtensionsTests.cs │ ├── Grand.Business.Marketing.Tests.csproj │ └── Services │ │ ├── Banners │ │ └── BannerServiceTests.cs │ │ ├── Contacts │ │ └── PopupServiceTests.cs │ │ ├── Courses │ │ ├── CourseActionServiceTests.cs │ │ └── CoursesServiceTests.cs │ │ ├── Documents │ │ ├── DocumentServiceTests.cs │ │ └── DocumentTypeServiceTests.cs │ │ └── Newsletters │ │ ├── NewsLetterSubscriptionServiceTests.cs │ │ └── NewsletterCategoryServiceTests.cs ├── Grand.Business.Messages.Tests │ ├── Commands │ │ └── InsertContactUsCommandHandlerTests.cs │ ├── Grand.Business.Messages.Tests.csproj │ └── Services │ │ ├── EmailAccountServiceTests.cs │ │ ├── LiquidObjectBuilderTests.cs │ │ ├── MessageProviderServiceTest.cs │ │ ├── MessageTemplateServiceTests.cs │ │ ├── MimeMappingServiceTests.cs │ │ └── QueuedEmailServiceTests.cs ├── Grand.Business.Storage.Tests │ ├── Extensions │ │ └── ExtensionsTests.cs │ ├── Grand.Business.Storage.Tests.csproj │ └── Services │ │ ├── DownloadServiceTests.cs │ │ └── PictureServiceTests.cs └── Grand.Business.System.Tests │ ├── Commands │ ├── SendOutBidCustomerNotificationCommandHandlerTests.cs │ └── SendQuantityBelowStoreOwnerNotificationCommandHandlerTests.cs │ ├── Grand.Business.System.Tests.csproj │ └── Services │ ├── Admin │ └── AdminSiteMapServiceTests.cs │ ├── BackgroundService │ ├── CancelOrderScheduledTaskTests.cs │ ├── ClearCacheScheduleTaskTests.cs │ ├── ClearLogScheduleTaskTests.cs │ ├── CustomerReminderAbandonedCartScheduleTaskTests.cs │ ├── CustomerReminderTasksTests.cs │ ├── DeleteGuestsScheduleTaskTests.cs │ ├── EndAuctionsTaskTests.cs │ ├── QueuedMessagesSendScheduleTaskTests.cs │ └── UpdateExchangeRateScheduleTaskTests.cs │ └── ExportImport │ └── ExportManagerTests.cs └── Web ├── Grand.Web.Admin ├── Areas │ └── Admin │ │ └── Views │ │ ├── ActivityLog │ │ ├── ListLogs.cshtml │ │ ├── ListStats.cshtml │ │ └── ListTypes.cshtml │ │ ├── AddressAttribute │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ValueCreatePopup.cshtml │ │ ├── ValueEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabValues.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdateValue.cshtml │ │ ├── Affiliate │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabCustomers.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── ApiUser │ │ └── Index.cshtml │ │ ├── Banner │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Blog │ │ ├── BlogPostAddPopup.cshtml │ │ ├── CategoryCreate.cshtml │ │ ├── CategoryEdit.cshtml │ │ ├── CategoryList.cshtml │ │ ├── Comments.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _CreateOrUpdate.TabComments.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabProducts.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ ├── _CreateOrUpdateCategory.Posts.cshtml │ │ ├── _CreateOrUpdateCategory.TabInfo.cshtml │ │ └── _CreateOrUpdateCategory.cshtml │ │ ├── Brand │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabActivityLog.cshtml │ │ ├── _CreateOrUpdate.TabDiscounts.cshtml │ │ ├── _CreateOrUpdate.TabDocuments.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Campaign │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabConditions.cshtml │ │ ├── _CreateOrUpdate.TabEmails.cshtml │ │ ├── _CreateOrUpdate.TabHistory.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabTest.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Category │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _CreateOrUpdate.TabActivityLog.cshtml │ │ ├── _CreateOrUpdate.TabDiscounts.cshtml │ │ ├── _CreateOrUpdate.TabDocuments.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabProducts.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── CheckoutAttribute │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ValueCreatePopup.cshtml │ │ ├── ValueEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabCondition.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabValues.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdateValue.cshtml │ │ ├── Collection │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _CreateOrUpdate.TabActivityLog.cshtml │ │ ├── _CreateOrUpdate.TabDiscounts.cshtml │ │ ├── _CreateOrUpdate.TabDocuments.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabProducts.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Common │ │ ├── AdditionsRobotsTxt.cshtml │ │ ├── CustomCss.cshtml │ │ ├── CustomJs.cshtml │ │ ├── Maintenance.cshtml │ │ ├── Roslyn.cshtml │ │ ├── SeNames.cshtml │ │ └── SystemInfo.cshtml │ │ ├── ContactAttribute │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ValueCreatePopup.cshtml │ │ ├── ValueEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabCondition.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabValues.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdateValue.cshtml │ │ ├── ContactForm │ │ ├── Details.cshtml │ │ └── List.cshtml │ │ ├── Country │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── StateCreatePopup.cshtml │ │ ├── StateEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabStates.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdateState.cshtml │ │ ├── Course │ │ ├── AssociateProductToCoursePopup.cshtml │ │ ├── Create.cshtml │ │ ├── CreateLesson.cshtml │ │ ├── Edit.cshtml │ │ ├── EditLesson.cshtml │ │ ├── Level.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.Lesson.cshtml │ │ ├── _CreateOrUpdate.Subject.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ ├── _Lesson.TabInfo.cshtml │ │ └── _Lesson.cshtml │ │ ├── Currency │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Customer │ │ ├── AddressCreate.cshtml │ │ ├── AddressEdit.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _CreateOrUpdate.Documents.cshtml │ │ ├── _CreateOrUpdate.TabActivityLog.cshtml │ │ ├── _CreateOrUpdate.TabAddresses.cshtml │ │ ├── _CreateOrUpdate.TabCurrentShoppingCart.cshtml │ │ ├── _CreateOrUpdate.TabCurrentWishlist.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabLoyaltyPoints.cshtml │ │ ├── _CreateOrUpdate.TabNotes.cshtml │ │ ├── _CreateOrUpdate.TabOrders.cshtml │ │ ├── _CreateOrUpdate.TabOutOfStockSubscriptions.cshtml │ │ ├── _CreateOrUpdate.TabProduct.cshtml │ │ ├── _CreateOrUpdate.TabProductPrice.cshtml │ │ ├── _CreateOrUpdate.TabReviews.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ ├── _CreateOrUpdateAddress.cshtml │ │ └── _CustomerAttributes.cshtml │ │ ├── CustomerAction │ │ ├── AddCondition.cshtml │ │ ├── CategoryAddPopup.cshtml │ │ ├── CollectionAddPopup.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── EditCondition.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _ConditionCategory.cshtml │ │ ├── _ConditionCollection.cshtml │ │ ├── _ConditionCustomCustomerAttribute.cshtml │ │ ├── _ConditionCustomerGroup.cshtml │ │ ├── _ConditionCustomerRegister.cshtml │ │ ├── _ConditionCustomerTag.cshtml │ │ ├── _ConditionInfo.cshtml │ │ ├── _ConditionProduct.cshtml │ │ ├── _ConditionProductAttribute.cshtml │ │ ├── _ConditionProductSpecification.cshtml │ │ ├── _ConditionStore.cshtml │ │ ├── _ConditionUrlCurrent.cshtml │ │ ├── _ConditionUrlReferrer.cshtml │ │ ├── _ConditionVendor.cshtml │ │ ├── _CreateOrUpdate.TabConditions.cshtml │ │ ├── _CreateOrUpdate.TabHistory.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabReaction.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdateCondition.cshtml │ │ ├── CustomerActionType │ │ └── ListTypes.cshtml │ │ ├── CustomerAttribute │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ValueCreatePopup.cshtml │ │ ├── ValueEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabValues.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdateValue.cshtml │ │ ├── CustomerGroup │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _CreateOrUpdate.TabAcl.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabProducts.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── CustomerReminder │ │ ├── AddCondition.cshtml │ │ ├── AddLevel.cshtml │ │ ├── CategoryAddPopup.cshtml │ │ ├── CollectionAddPopup.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── EditCondition.cshtml │ │ ├── EditLevel.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _ConditionCategory.cshtml │ │ ├── _ConditionCollection.cshtml │ │ ├── _ConditionCustomCustomerAttribute.cshtml │ │ ├── _ConditionCustomerGroup.cshtml │ │ ├── _ConditionCustomerRegister.cshtml │ │ ├── _ConditionCustomerTag.cshtml │ │ ├── _ConditionInfo.cshtml │ │ ├── _ConditionProduct.cshtml │ │ ├── _CreateOrUpdate.TabConditions.cshtml │ │ ├── _CreateOrUpdate.TabHistory.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabLevels.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ ├── _CreateOrUpdateCondition.cshtml │ │ └── _CreateOrUpdateLevel.cshtml │ │ ├── CustomerTag │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── _CreateOrUpdate.TabCustomers.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabProducts.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Discount │ │ ├── BrandAddPopup.cshtml │ │ ├── CategoryAddPopup.cshtml │ │ ├── CollectionAddPopup.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── ProductAddPopup.cshtml │ │ ├── VendorAddPopup.cshtml │ │ ├── _CreateOrUpdate.TabAppliedToBrands.cshtml │ │ ├── _CreateOrUpdate.TabAppliedToCategories.cshtml │ │ ├── _CreateOrUpdate.TabAppliedToCollections.cshtml │ │ ├── _CreateOrUpdate.TabAppliedToProducts.cshtml │ │ ├── _CreateOrUpdate.TabAppliedToVendors.cshtml │ │ ├── _CreateOrUpdate.TabCouponCodes.cshtml │ │ ├── _CreateOrUpdate.TabHistory.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabRequirements.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Document │ │ ├── CreateDocument.cshtml │ │ ├── CreateType.cshtml │ │ ├── EditDocument.cshtml │ │ ├── EditType.cshtml │ │ ├── List.cshtml │ │ ├── Types.cshtml │ │ ├── _CreateOrUpdateDocument.Account.cshtml │ │ ├── _CreateOrUpdateDocument.TabInfo.cshtml │ │ ├── _CreateOrUpdateDocument.cshtml │ │ └── _CreateOrUpdateType.cshtml │ │ ├── EmailAccount │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── ExternalAuthentication │ │ └── Methods.cshtml │ │ ├── GiftVoucher │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabHistory.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── GoogleAnalytics │ │ ├── DashboardDataByDevice.cshtml │ │ ├── DashboardDataByExit.cshtml │ │ ├── DashboardDataByLocalization.cshtml │ │ ├── DashboardDataBySource.cshtml │ │ └── DashboardGeneralData.cshtml │ │ ├── Home │ │ ├── AccessDenied.cshtml │ │ ├── DashboardActivity.cshtml │ │ ├── Index.cshtml │ │ └── Statistics.cshtml │ │ ├── InteractiveForm │ │ ├── AddAttribute.cshtml │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── EditAttribute.cshtml │ │ ├── List.cshtml │ │ ├── ValueCreatePopup.cshtml │ │ ├── ValueEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabValues.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ ├── _CreateOrUpdateAttribute.TabInfo.cshtml │ │ ├── _CreateOrUpdateAttribute.TabValues.cshtml │ │ ├── _CreateOrUpdateAttribute.cshtml │ │ └── _CreateOrUpdateAttributeValue.cshtml │ │ ├── Knowledgebase │ │ ├── ArticlesPopup.cshtml │ │ ├── CreateArticle.cshtml │ │ ├── CreateCategory.cshtml │ │ ├── EditArticle.cshtml │ │ ├── EditCategory.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdateArticle.TabActivityLog.cshtml │ │ ├── _CreateOrUpdateArticle.TabInfo.cshtml │ │ ├── _CreateOrUpdateArticle.TabRelated.cshtml │ │ ├── _CreateOrUpdateArticle.TabSeo.cshtml │ │ ├── _CreateOrUpdateArticle.cshtml │ │ ├── _CreateOrUpdateCategory.TabActivityLog.cshtml │ │ ├── _CreateOrUpdateCategory.TabArticles.cshtml │ │ ├── _CreateOrUpdateCategory.TabInfo.cshtml │ │ ├── _CreateOrUpdateCategory.TabSeo.cshtml │ │ └── _CreateOrUpdateCategory.cshtml │ │ ├── Language │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabResources.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Layout │ │ ├── BrandLayouts.cshtml │ │ ├── CategoryLayouts.cshtml │ │ ├── CollectionLayouts.cshtml │ │ ├── PageLayouts.cshtml │ │ └── ProductLayouts.cshtml │ │ ├── Logger │ │ ├── List.cshtml │ │ └── View.cshtml │ │ ├── Login │ │ ├── Index.cshtml │ │ └── TwoFactorAuthorization.cshtml │ │ ├── Measure │ │ ├── Index.cshtml │ │ ├── _dimensions.cshtml │ │ ├── _units.cshtml │ │ └── _weights.cshtml │ │ ├── MerchandiseReturn │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabAddress.cshtml │ │ ├── _CreateOrUpdate.TabDocuments.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _MerchandiseReturnNotes.cshtml │ │ ├── MessageTemplate │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── News │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabComments.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── NewsLetterSubscription │ │ └── List.cshtml │ │ ├── NewsletterCategory │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── OnlineCustomer │ │ └── List.cshtml │ │ ├── Order │ │ ├── AddProductToOrder.cshtml │ │ ├── AddProductToOrderDetails.cshtml │ │ ├── AddressEdit.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── UploadLicenseFilePopup.cshtml │ │ ├── _CreateOrUpdateAddress.cshtml │ │ ├── _OrderDetails.Addresses.cshtml │ │ ├── _OrderDetails.Documents.cshtml │ │ ├── _OrderDetails.Info.cshtml │ │ ├── _OrderDetails.Notes.cshtml │ │ ├── _OrderDetails.Products.cshtml │ │ ├── _OrderDetails.Shipment.cshtml │ │ ├── _ProductAddAttributes.cshtml │ │ └── _ProductAddGiftVoucherInfo.cshtml │ │ ├── OrderStatus │ │ └── Index.cshtml │ │ ├── OrderTags │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabOrders.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Page │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Payment │ │ ├── Index.cshtml │ │ ├── MethodRestrictions.TabCountry.cshtml │ │ ├── MethodRestrictions.TabShipping.cshtml │ │ ├── MethodRestrictions.cshtml │ │ └── Settings.cshtml │ │ ├── PaymentTransaction │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── PartiallyPaidPopup.cshtml │ │ ├── PartiallyRefundPopup.cshtml │ │ └── _Update.cshtml │ │ ├── Permission │ │ ├── Index.cshtml │ │ └── PermissionsAction.cshtml │ │ ├── Plugin │ │ └── List.cshtml │ │ ├── Product │ │ ├── AssociateProductToAttributeValuePopup.cshtml │ │ ├── AssociatedProductAddPopup.cshtml │ │ ├── AttributeCombinationPopup.cshtml │ │ ├── BulkEdit.cshtml │ │ ├── BundleProductAddPopup.cshtml │ │ ├── Create.cshtml │ │ ├── CrossSellProductAddPopup.cshtml │ │ ├── Edit.cshtml │ │ ├── EditAttributeValues.cshtml │ │ ├── List.cshtml │ │ ├── ProductAttributeConditionPopup.cshtml │ │ ├── ProductAttributeMappingPopup.cshtml │ │ ├── ProductAttributeValidationRulesPopup.cshtml │ │ ├── ProductAttributeValueCreatePopup.cshtml │ │ ├── ProductAttributeValueEditPopup.cshtml │ │ ├── RecommendedProductAddPopup.cshtml │ │ ├── RelatedProductAddPopup.cshtml │ │ ├── RequiredProductAddPopup.cshtml │ │ ├── SimilarProductAddPopup.cshtml │ │ ├── TierPriceCreatePopup.cshtml │ │ ├── TierPriceEditPopup.cshtml │ │ ├── _CreateOrUpdate.Activitylog.cshtml │ │ ├── _CreateOrUpdate.Additional.cshtml │ │ ├── _CreateOrUpdate.AssociatedProducts.cshtml │ │ ├── _CreateOrUpdate.Bids.cshtml │ │ ├── _CreateOrUpdate.BundleProducts.cshtml │ │ ├── _CreateOrUpdate.Calendar.cshtml │ │ ├── _CreateOrUpdate.Categories.cshtml │ │ ├── _CreateOrUpdate.Collections.cshtml │ │ ├── _CreateOrUpdate.CrossSells.cshtml │ │ ├── _CreateOrUpdate.Discounts.cshtml │ │ ├── _CreateOrUpdate.Documents.cshtml │ │ ├── _CreateOrUpdate.Info.cshtml │ │ ├── _CreateOrUpdate.Inventory.cshtml │ │ ├── _CreateOrUpdate.Pictures.cshtml │ │ ├── _CreateOrUpdate.Prices.cshtml │ │ ├── _CreateOrUpdate.ProductAttributes.TabAttributeCombinations.cshtml │ │ ├── _CreateOrUpdate.ProductAttributes.TabAttributes.cshtml │ │ ├── _CreateOrUpdate.ProductAttributes.cshtml │ │ ├── _CreateOrUpdate.ProductPrices.cshtml │ │ ├── _CreateOrUpdate.PurchasedWithOrders.cshtml │ │ ├── _CreateOrUpdate.Recommended.cshtml │ │ ├── _CreateOrUpdate.RelatedProducts.cshtml │ │ ├── _CreateOrUpdate.Reviews.cshtml │ │ ├── _CreateOrUpdate.SEO.cshtml │ │ ├── _CreateOrUpdate.SimilarProducts.cshtml │ │ ├── _CreateOrUpdate.SpecificationAttributes.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ ├── _CreateOrUpdateProductAttributeValue.cshtml │ │ ├── _CreateOrUpdateTierPrice.cshtml │ │ └── _ProductAttributes.cshtml │ │ ├── ProductAttribute │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── PredefinedProductAttributeValueCreatePopup.cshtml │ │ ├── PredefinedProductAttributeValueEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabPredefinedValues.cshtml │ │ ├── _CreateOrUpdate.TabUsedByProducts.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdatePredefinedProductAttributeValue.cshtml │ │ ├── ProductReview │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── ProductTags │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabProducts.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── PushNotifications │ │ ├── Messages.cshtml │ │ ├── Receivers.cshtml │ │ └── Send.cshtml │ │ ├── QueuedEmail │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Reports │ │ ├── BestsellersBriefReportByAmount.cshtml │ │ ├── BestsellersBriefReportByQuantity.cshtml │ │ ├── BestsellersReport.cshtml │ │ ├── CountryReport.cshtml │ │ ├── Customer.TabBestByNumberOfOrders.cshtml │ │ ├── Customer.TabBestByOrderTotal.cshtml │ │ ├── Customer.TabRegisteredCustomers.cshtml │ │ ├── Customer.cshtml │ │ ├── LowStockReport.cshtml │ │ ├── NeverSoldReport.cshtml │ │ ├── _ReportBestCustomersByNumberOfOrders.cshtml │ │ └── _ReportBestCustomersByOrderTotal.cshtml │ │ ├── SalesEmployee │ │ └── Index.cshtml │ │ ├── ScheduleTask │ │ ├── EditScheduler.cshtml │ │ └── List.cshtml │ │ ├── Setting │ │ ├── AdminSearch.cshtml │ │ ├── Catalog.TabCompareProducts.cshtml │ │ ├── Catalog.TabGeneralSettings.cshtml │ │ ├── Catalog.TabPerformance.cshtml │ │ ├── Catalog.TabProductReviews.cshtml │ │ ├── Catalog.TabSearchSettings.cshtml │ │ ├── Catalog.TabSharing.cshtml │ │ ├── Catalog.TabSortOptions.cshtml │ │ ├── Catalog.cshtml │ │ ├── Content.TabBlogSettings.cshtml │ │ ├── Content.TabKnowledgebaseSettings.cshtml │ │ ├── Content.TabNewsSettings.cshtml │ │ ├── Content.cshtml │ │ ├── Customer.TabAddressFormFields.cshtml │ │ ├── Customer.TabCustomerFormFields.cshtml │ │ ├── Customer.TabCustomerSecurity.cshtml │ │ ├── Customer.TabCustomerSettings.cshtml │ │ ├── Customer.cshtml │ │ ├── GeneralCommon.TabGoogleAnalyticsSettings.cshtml │ │ ├── GeneralCommon.TabMenuSettings.cshtml │ │ ├── GeneralCommon.TabPdfSettings.cshtml │ │ ├── GeneralCommon.TabSEOSettings.cshtml │ │ ├── GeneralCommon.TabSecuritySettings.cshtml │ │ ├── GeneralCommon.TabStoreInformationSettings.cshtml │ │ ├── GeneralCommon.cshtml │ │ ├── Media.cshtml │ │ ├── MerchandiseReturnActionCreate.cshtml │ │ ├── MerchandiseReturnActionEdit.cshtml │ │ ├── MerchandiseReturnReasonCreate.cshtml │ │ ├── MerchandiseReturnReasonEdit.cshtml │ │ ├── PushNotifications.cshtml │ │ ├── Sales.TabLoyaltyPoints.cshtml │ │ ├── Sales.TabMerchandiseReturn.cshtml │ │ ├── Sales.TabOrderSettings.cshtml │ │ ├── Sales.TabShoppingCart.cshtml │ │ ├── Sales.cshtml │ │ ├── SystemSetting.cshtml │ │ ├── Vendor.cshtml │ │ ├── _CreateOrUpdate.MerchandiseReturnAction.cshtml │ │ ├── _CreateOrUpdate.MerchandiseReturnReason.cshtml │ │ ├── _MerchandiseReturnActions.cshtml │ │ └── _MerchandiseReturnReasons.cshtml │ │ ├── Shared │ │ ├── Components │ │ │ ├── AclDisabledWarning │ │ │ │ └── Default.cshtml │ │ │ ├── AdminLanguageSelector │ │ │ │ └── Default.cshtml │ │ │ ├── AdminWidget │ │ │ │ └── Default.cshtml │ │ │ ├── Affiliate │ │ │ │ └── Default.cshtml │ │ │ ├── BestsellersBriefReportByAmount │ │ │ │ └── Default.cshtml │ │ │ ├── BestsellersBriefReportByQuantity │ │ │ │ └── Default.cshtml │ │ │ ├── CustomerReportRegistered │ │ │ │ └── Default.cshtml │ │ │ ├── CustomerReportTimeChart │ │ │ │ └── Default.cshtml │ │ │ ├── LatestOrder │ │ │ │ └── Default.cshtml │ │ │ ├── MultistoreDisabledWarning │ │ │ │ └── Default.cshtml │ │ │ ├── OrderAverageReport │ │ │ │ └── Default.cshtml │ │ │ ├── OrderIncompleteReport │ │ │ │ └── Default.cshtml │ │ │ ├── OrderPeriodReport │ │ │ │ └── Default.cshtml │ │ │ ├── OrderTimeChart │ │ │ │ └── Default.cshtml │ │ │ ├── PopularSearchTermsReport │ │ │ │ └── Default.cshtml │ │ │ └── StoreScope │ │ │ │ └── Default.cshtml │ │ ├── Delete.cshtml │ │ ├── EditorTemplates │ │ │ ├── Address.cshtml │ │ │ ├── Brand.cshtml │ │ │ ├── Category.cshtml │ │ │ ├── Codemirror.cshtml │ │ │ ├── Collection.cshtml │ │ │ ├── CustomerGroups.cshtml │ │ │ ├── Date.cshtml │ │ │ ├── DateNullable.cshtml │ │ │ ├── DateTime.cshtml │ │ │ ├── DateTimeNullable.cshtml │ │ │ ├── Decimal.cshtml │ │ │ ├── DecimalN4.cshtml │ │ │ ├── DecimalNullable.cshtml │ │ │ ├── Double.cshtml │ │ │ ├── DoubleN4.cshtml │ │ │ ├── DoubleNullable.cshtml │ │ │ ├── Download.cshtml │ │ │ ├── Editor.cshtml │ │ │ ├── Int32.cshtml │ │ │ ├── Int32Nullable.cshtml │ │ │ ├── Logo.cshtml │ │ │ ├── MultiSelect.cshtml │ │ │ ├── Picture.cshtml │ │ │ ├── Review.cshtml │ │ │ ├── Stores.cshtml │ │ │ ├── Time.cshtml │ │ │ └── Vendor.cshtml │ │ ├── HeadAdmin.cshtml │ │ ├── Menu.cshtml │ │ ├── Notifications.cshtml │ │ ├── _AddressAttributes.cshtml │ │ ├── _AdminLayout.cshtml │ │ ├── _AdminLoginLayout.cshtml │ │ ├── _AdminPopupLayout.cshtml │ │ ├── _ConfigurePlugin.cshtml │ │ ├── _MenuItem.cshtml │ │ └── _UserFields.cshtml │ │ ├── Shipment │ │ ├── AddShipment.cshtml │ │ ├── List.cshtml │ │ ├── ShipmentDetails.cshtml │ │ ├── _Documents.cshtml │ │ ├── _Info.cshtml │ │ └── _ShipmentNotes.cshtml │ │ ├── Shipping │ │ ├── CreateDeliveryDate.cshtml │ │ ├── CreateMethod.cshtml │ │ ├── CreatePickupPoint.cshtml │ │ ├── CreateWarehouse.cshtml │ │ ├── DeliveryDates.cshtml │ │ ├── EditDeliveryDate.cshtml │ │ ├── EditMethod.cshtml │ │ ├── EditPickupPoint.cshtml │ │ ├── EditWarehouse.cshtml │ │ ├── Methods.cshtml │ │ ├── PickupPoints.cshtml │ │ ├── Providers.cshtml │ │ ├── Restrictions.TabCountry.cshtml │ │ ├── Restrictions.TabGroup.cshtml │ │ ├── Restrictions.cshtml │ │ ├── Settings.cshtml │ │ ├── Warehouses.cshtml │ │ ├── _CreateOrUpdateDeliveryDate.cshtml │ │ ├── _CreateOrUpdateMethod.cshtml │ │ ├── _CreateOrUpdatePickupPoint.cshtml │ │ └── _CreateOrUpdateWarehouse.cshtml │ │ ├── ShoppingCart │ │ ├── CurrentCarts.cshtml │ │ ├── _CurrentCarts.TabCurrentCarts.cshtml │ │ └── _CurrentCarts.TabCurrentWishlists.cshtml │ │ ├── SpecificationAttribute │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── OptionCreatePopup.cshtml │ │ ├── OptionEditPopup.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabOptions.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _CreateOrUpdateOption.cshtml │ │ ├── Store │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── Tax │ │ ├── Categories.cshtml │ │ ├── Providers.cshtml │ │ └── Settings.cshtml │ │ ├── Vendor │ │ ├── Create.cshtml │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.TabDiscounts.cshtml │ │ ├── _CreateOrUpdate.TabDocuments.cshtml │ │ ├── _CreateOrUpdate.TabInfo.cshtml │ │ ├── _CreateOrUpdate.TabSeo.cshtml │ │ ├── _CreateOrUpdate.TabVendorNotes.cshtml │ │ ├── _CreateOrUpdate.TabVendorReviews.cshtml │ │ └── _CreateOrUpdate.cshtml │ │ ├── VendorReview │ │ ├── Edit.cshtml │ │ ├── List.cshtml │ │ ├── _CreateOrUpdate.cshtml │ │ └── _SearchVendor.cshtml │ │ ├── Widget │ │ └── List.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Components │ ├── AdminLanguageSelector.cs │ ├── AdminWidget.cs │ ├── Affiliate.cs │ ├── BestsellersBriefReportByAmount.cs │ ├── BestsellersBriefReportByQuantity.cs │ ├── CustomerReportRegistered.cs │ ├── CustomerReportTimeChart.cs │ ├── LatestOrder.cs │ ├── OrderAverageReport.cs │ ├── OrderIncompleteReport.cs │ ├── OrderPeriodReport.cs │ ├── OrderTimeChart.cs │ ├── PopularSearchTermsReport.cs │ └── StoreScope.cs ├── Controllers │ ├── ActivityLogController.cs │ ├── AddressAttributeController.cs │ ├── AffiliateController.cs │ ├── ApiUserController.cs │ ├── BannerController.cs │ ├── BaseAdminController.cs │ ├── BlogController.cs │ ├── BrandController.cs │ ├── CampaignController.cs │ ├── CategoryController.cs │ ├── CheckoutAttributeController.cs │ ├── CollectionController.cs │ ├── CommonController.cs │ ├── ContactAttributeController.cs │ ├── ContactFormController.cs │ ├── CountryController.cs │ ├── CourseController.cs │ ├── CurrencyController.cs │ ├── CustomerActionController.cs │ ├── CustomerActionTypeController.cs │ ├── CustomerAttributeController.cs │ ├── CustomerController.cs │ ├── CustomerGroupController.cs │ ├── CustomerReminderController.cs │ ├── CustomerTagController.cs │ ├── DiscountController.cs │ ├── DocumentController.cs │ ├── DownloadController.cs │ ├── EmailAccountController.cs │ ├── ExternalAuthenticationController.cs │ ├── GiftVoucherController.cs │ ├── GoogleAnalyticsController.cs │ ├── HomeController.cs │ ├── InteractiveFormController.cs │ ├── KnowledgebaseController.cs │ ├── LanguageController.cs │ ├── LayoutController.cs │ ├── LoggerController.cs │ ├── LoginController.cs │ ├── MeasureController.cs │ ├── MerchandiseReturnController.cs │ ├── MessageTemplateController.cs │ ├── NewsController.cs │ ├── NewsLetterCategoryController.cs │ ├── NewsLetterSubscriptionController.cs │ ├── OnlineCustomerController.cs │ ├── OrderController.cs │ ├── OrderStatusController.cs │ ├── OrderTagsController.cs │ ├── PageController.cs │ ├── PaymentController.cs │ ├── PaymentTransactionController.cs │ ├── PermissionController.cs │ ├── PictureController.cs │ ├── PluginController.cs │ ├── ProductAttributeController.cs │ ├── ProductController.cs │ ├── ProductReviewController.cs │ ├── ProductTagsController.cs │ ├── PushNotificationsController.cs │ ├── QueuedEmailController.cs │ ├── ReportsController.cs │ ├── RoxyFilemanController.cs │ ├── SalesEmployeeController.cs │ ├── ScheduleTaskController.cs │ ├── SearchController.cs │ ├── SettingController.cs │ ├── ShipmentController.cs │ ├── ShippingController.cs │ ├── ShoppingCartController.cs │ ├── SpecificationAttributeController.cs │ ├── StoreController.cs │ ├── TaxController.cs │ ├── UserFieldController.cs │ ├── VendorController.cs │ ├── VendorReviewController.cs │ └── WidgetController.cs ├── Endpoints │ └── EndpointProvider.cs ├── Extensions │ ├── AclMappingExtension.cs │ ├── AttributeParserHelper.cs │ ├── Constants.cs │ ├── HasAccess.cs │ ├── LocalizedExtension.cs │ ├── Mapping │ │ ├── AddressAttributeMappingExtensions.cs │ │ ├── AddressMappingExtensions.cs │ │ ├── BannerMappingExtensions.cs │ │ ├── BlogCategoryMappingExtensions.cs │ │ ├── BlogPostMappingExtensions.cs │ │ ├── BrandMappingExtensions.cs │ │ ├── CampaignMappingExtensions.cs │ │ ├── CategoryMappingExtensions.cs │ │ ├── CheckoutAttributeMappingExtensions.cs │ │ ├── CollectionMappingExtensions.cs │ │ ├── ContactAttributeMappingExtensions.cs │ │ ├── ContactUsMappingExtensions.cs │ │ ├── CountryMappingExtensions.cs │ │ ├── CourseLessonMappingExtensions.cs │ │ ├── CourseLevelMappingExtensions.cs │ │ ├── CourseMappingExtensions.cs │ │ ├── CourseSubjectMappingExtensions.cs │ │ ├── CurrencyMappingExtensions.cs │ │ ├── CustomerActionMappingExtensions.cs │ │ ├── CustomerActionTypeMappingExtensions.cs │ │ ├── CustomerAttributeMappingExtensions.cs │ │ ├── CustomerGroupMappingExtensions.cs │ │ ├── CustomerReminderMappingExtensions.cs │ │ ├── CustomerTagMappingExtensions.cs │ │ ├── DateTimeMappingExtensions.cs │ │ ├── DeliveryDateMappingExtensions.cs │ │ ├── DiscountMappingExtensions.cs │ │ ├── DocumentMappingExtensions.cs │ │ ├── EmailAccountMappingExtensions.cs │ │ ├── GiftVoucherMappingExtensions.cs │ │ ├── IExternalAuthenticationMethodMappingExtensions.cs │ │ ├── IPaymentMethodMappingExtensions.cs │ │ ├── IShippingRateComputationMethodMappingExtensions.cs │ │ ├── ITaxProviderMappingExtensions.cs │ │ ├── IWidgetPluginMappingExtensions.cs │ │ ├── InteractiveFormMappingExtensions.cs │ │ ├── KnowledgebaseCategoryMappingExtensions.cs │ │ ├── LanguageMappingExtensions.cs │ │ ├── Layouts │ │ │ ├── BrandLayoutMappingExtensions.cs │ │ │ ├── CategoryLayoutMappingExtensions.cs │ │ │ ├── CollectionLayoutMappingExtensions.cs │ │ │ ├── PageLayoutMappingExtensions.cs │ │ │ └── ProductLayoutMappingExtensions.cs │ │ ├── LogMappingExtensions.cs │ │ ├── MeasureDimensionMappingExtensions.cs │ │ ├── MeasureUnitMappingExtensions.cs │ │ ├── MeasureWeightMappingExtensions.cs │ │ ├── MerchandiseReturnActionMappingExtensions.cs │ │ ├── MerchandiseReturnReasonMappingExtensions.cs │ │ ├── MessageTemplateMappingExtensions.cs │ │ ├── NewsItemMappingExtensions.cs │ │ ├── NewsLetterSubscriptionMappingExtensions.cs │ │ ├── NewsletterCategoryMappingExtensions.cs │ │ ├── OrderStatusMappingExtensions.cs │ │ ├── PageMappingExtensions.cs │ │ ├── PickupPointMappingExtensions.cs │ │ ├── PluginDescriptorMappingExtensions.cs │ │ ├── ProductAttributeCombinationMappingExtensions.cs │ │ ├── ProductAttributeMappingExtensions.cs │ │ ├── ProductAttributeMappingMappingExtensions.cs │ │ ├── ProductReviewMappingExtensions.cs │ │ ├── ProductsMappingExtensions.cs │ │ ├── QueuedEmailMappingExtensions.cs │ │ ├── SalesEmployeeMappingExtensions.cs │ │ ├── ScheduleTaskMappingExtensions.cs │ │ ├── Settings │ │ │ ├── AddressSettingsMappingExtensions.cs │ │ │ ├── BlogSettingsMappingExtensions.cs │ │ │ ├── CatalogSettingsMappingExtensions.cs │ │ │ ├── CustomerSettingsMappingExtensions.cs │ │ │ ├── LoyaltyPointsSettingsMappingExtensions.cs │ │ │ ├── MediaSettingsMappingExtensions.cs │ │ │ ├── NewsSettingsMappingExtensions.cs │ │ │ ├── OrderSettingsMappingExtensions.cs │ │ │ ├── PaymentSettingsMappingExtensions.cs │ │ │ ├── ShippingSettingsMappingExtensions.cs │ │ │ ├── ShoppingCartSettingsMappingExtensions.cs │ │ │ ├── TaxSettingsMappingExtensions.cs │ │ │ └── VendorSettingsMappingExtensions.cs │ │ ├── ShippingMethodMappingExtensions.cs │ │ ├── SpecificationAttributeMappingExtensions.cs │ │ ├── StoreMappingExtensions.cs │ │ ├── TaxCategoryMappingExtensions.cs │ │ ├── TierPriceMappingExtensions.cs │ │ ├── UserApiMappingExtensions.cs │ │ ├── VendorMappingExtensions.cs │ │ └── WarehouseMappingExtensions.cs │ ├── PluginExtensions.cs │ ├── ProductList.cs │ ├── UpdatePicture.cs │ └── WidgetExtensions.cs ├── Grand.Web.Admin.csproj ├── Interfaces │ ├── IActivityLogViewModelService.cs │ ├── IAddressAttributeViewModelService.cs │ ├── IAffiliateViewModelService.cs │ ├── IBlogViewModelService.cs │ ├── IBrandViewModelService.cs │ ├── ICampaignViewModelService.cs │ ├── ICategoryViewModelService.cs │ ├── ICheckoutAttributeViewModelService.cs │ ├── ICollectionViewModelService.cs │ ├── IContactAttributeViewModelService.cs │ ├── IContactFormViewModelService.cs │ ├── ICountryViewModelService.cs │ ├── ICourseViewModelService.cs │ ├── ICurrencyViewModelService.cs │ ├── ICustomerActionViewModelService.cs │ ├── ICustomerAttributeViewModelService.cs │ ├── ICustomerGroupViewModelService.cs │ ├── ICustomerReminderViewModelService.cs │ ├── ICustomerReportViewModelService.cs │ ├── ICustomerTagViewModelService.cs │ ├── ICustomerViewModelService.cs │ ├── IDiscountViewModelService.cs │ ├── IDocumentViewModelService.cs │ ├── IEmailAccountViewModelService.cs │ ├── IGiftVoucherViewModelService.cs │ ├── IKnowledgebaseViewModelService.cs │ ├── ILanguageViewModelService.cs │ ├── ILogViewModelService.cs │ ├── IMerchandiseReturnViewModelService.cs │ ├── INewsViewModelService.cs │ ├── IOrderViewModelService.cs │ ├── IPageViewModelService.cs │ ├── IProductReviewViewModelService.cs │ ├── IProductViewModelService.cs │ ├── IShipmentViewModelService.cs │ ├── IStoreViewModelService.cs │ └── IVendorViewModelService.cs ├── Mapper │ ├── ActivityLogTypeProfile.cs │ ├── AddressAttributeProfile.cs │ ├── AddressAttributeValueProfile.cs │ ├── AddressProfile.cs │ ├── AddressSettingsProfile.cs │ ├── BannerProfile.cs │ ├── BlogCategoryProfile.cs │ ├── BlogPostProfile.cs │ ├── BlogSettingsProfile.cs │ ├── BrandLayoutProfile.cs │ ├── BrandProfile.cs │ ├── CampaignProfile.cs │ ├── CatalogSettingsProfile.cs │ ├── CategoryLayoutProfile.cs │ ├── CategoryProfile.cs │ ├── CheckoutAttributeProfile.cs │ ├── CollectionLayoutProfile.cs │ ├── CollectionProfile.cs │ ├── ContactAttributeProfile.cs │ ├── ContactUsProfile.cs │ ├── CountryProfile.cs │ ├── CourseLessonProfile.cs │ ├── CourseLevelProfile.cs │ ├── CourseProfile.cs │ ├── CourseSubjectProfile.cs │ ├── CurrencyProfile.cs │ ├── CustomerActionProfile.cs │ ├── CustomerActionTypeProfile.cs │ ├── CustomerAttributeProfile.cs │ ├── CustomerAttributeValueProfile.cs │ ├── CustomerGroupProfile.cs │ ├── CustomerReminderProfile.cs │ ├── CustomerSettingsProfile.cs │ ├── CustomerTagProfile.cs │ ├── DeliveryDateProfile.cs │ ├── DiscountProfile.cs │ ├── DocumentProfile.cs │ ├── DocumentTypeProfile.cs │ ├── EmailAccountProfile.cs │ ├── ExternalAuthenticationMethodProfile.cs │ ├── GiftVoucherProfile.cs │ ├── InteractiveFormProfile.cs │ ├── KnowledgebaseCategoryProfile.cs │ ├── LanguageProfile.cs │ ├── LogProfile.cs │ ├── LoyaltyPointsSettingsProfile.cs │ ├── MeasureDimensionProfile.cs │ ├── MeasureUnitProfile.cs │ ├── MeasureWeightProfile.cs │ ├── MediaSettingsProfile.cs │ ├── MerchandiseReturnActionProfile.cs │ ├── MerchandiseReturnReasonProfile.cs │ ├── MessageTemplateProfile.cs │ ├── NewsItemProfile.cs │ ├── NewsLetterSubscriptionProfile.cs │ ├── NewsSettingsProfile.cs │ ├── NewsletterCategoryProfile.cs │ ├── OrderSettingsProfile.cs │ ├── OrderStatusProfile.cs │ ├── PageLayoutProfile.cs │ ├── PageProfile.cs │ ├── PaymentMethodProfile.cs │ ├── PaymentSettingsProfile.cs │ ├── PickupPointProfile.cs │ ├── PluginDescriptorProfile.cs │ ├── PredefinedProductAttributeValueProfile.cs │ ├── ProductAttributeCombinationProfile.cs │ ├── ProductAttributeMappingProfile.cs │ ├── ProductAttributeProfile.cs │ ├── ProductProfile.cs │ ├── ProductReviewProfile.cs │ ├── ProductlayoutProfile.cs │ ├── QueuedEmailProfile.cs │ ├── SalesEmployeeProfile.cs │ ├── ScheduleTaskProfile.cs │ ├── ShippingMethodProfile.cs │ ├── ShippingRateComputationMethodProfile.cs │ ├── ShippingSettingsProfile.cs │ ├── ShoppingCartSettingsProfile.cs │ ├── SpecificationAttributeProfile.cs │ ├── StateProvinceProfile.cs │ ├── StoreProfile.cs │ ├── TaxCategoryProfile.cs │ ├── TaxProviderProfile.cs │ ├── TaxSettingsProfile.cs │ ├── TierPriceProfile.cs │ ├── UserApiProfile.cs │ ├── VendorProfile.cs │ ├── VendorSettingsProfile.cs │ ├── WarehouseProfile.cs │ └── WidgetPluginProfile.cs ├── Models │ ├── Affiliates │ │ ├── AffiliateListModel.cs │ │ ├── AffiliateModel.cs │ │ └── AffiliatedOrderListModel.cs │ ├── Blogs │ │ ├── BlogCategoryModel.cs │ │ ├── BlogCategoryPost.cs │ │ ├── BlogCommentModel.cs │ │ ├── BlogPostModel.cs │ │ └── BlogProductModel.cs │ ├── Catalog │ │ ├── BrandListModel.cs │ │ ├── BrandModel.cs │ │ ├── BulkEditListModel.cs │ │ ├── BulkEditProductModel.cs │ │ ├── CategoryListModel.cs │ │ ├── CategoryModel.cs │ │ ├── CollectionListModel.cs │ │ ├── CollectionModel.cs │ │ ├── CopyProductModel.cs │ │ ├── LowStockProductModel.cs │ │ ├── ProductAttributeCombinationModel.cs │ │ ├── ProductAttributeConditionModel.cs │ │ ├── ProductAttributeModel.cs │ │ ├── ProductListModel.cs │ │ ├── ProductModel.cs │ │ ├── ProductReviewListModel.cs │ │ ├── ProductReviewModel.cs │ │ ├── ProductSpecificationAttributeModel.cs │ │ ├── ProductTagModel.cs │ │ ├── SpecificationAttributeModel.cs │ │ └── SpecificationAttributeOptionModel.cs │ ├── Cms │ │ ├── AdminWidgetModel.cs │ │ └── WidgetModel.cs │ ├── Common │ │ ├── AddressAttributeModel.cs │ │ ├── AddressAttributeValueModel.cs │ │ ├── AddressModel.cs │ │ ├── Editor.cs │ │ ├── EntityType.cs │ │ ├── LanguageSelectorModel.cs │ │ ├── LoginModel.cs │ │ ├── MaintenanceModel.cs │ │ ├── ReviewModel.cs │ │ ├── SearchModel.cs │ │ ├── SearchTermReportLineModel.cs │ │ ├── SystemInfoModel.cs │ │ ├── UrlEntityListModel.cs │ │ ├── UrlEntityModel.cs │ │ └── UserFieldModel.cs │ ├── Country │ │ └── CountriesListModel.cs │ ├── Courses │ │ ├── CourseLessonModel.cs │ │ ├── CourseLevelModel.cs │ │ ├── CourseModel.cs │ │ └── CourseSubjectModel.cs │ ├── Customers │ │ ├── BestCustomerReportLineModel.cs │ │ ├── BestCustomersReportModel.cs │ │ ├── CustomerActionConditionModel.cs │ │ ├── CustomerActionModel.cs │ │ ├── CustomerActionTypeModel.cs │ │ ├── CustomerAddressModel.cs │ │ ├── CustomerAttributeModel.cs │ │ ├── CustomerAttributeValueModel.cs │ │ ├── CustomerGroupModel.cs │ │ ├── CustomerGroupPermissionModel.cs │ │ ├── CustomerGroupProductModel.cs │ │ ├── CustomerListModel.cs │ │ ├── CustomerModel.cs │ │ ├── CustomerReminderModel.cs │ │ ├── CustomerReportsModel.cs │ │ ├── CustomerReviewModel.cs │ │ ├── CustomerTagModel.cs │ │ ├── CustomerTagProductModel.cs │ │ ├── OnlineCustomerModel.cs │ │ ├── RegisteredCustomerReportLineModel.cs │ │ ├── SalesEmployeeModel.cs │ │ ├── SerializeCustomerActionHistory.cs │ │ ├── SerializeCustomerReminderHistoryModel.cs │ │ └── UserApiModel.cs │ ├── Directory │ │ ├── CountryModel.cs │ │ ├── CurrencyModel.cs │ │ ├── MeasureDimensionModel.cs │ │ ├── MeasureUnitModel.cs │ │ ├── MeasureWeightModel.cs │ │ └── StateProvinceModel.cs │ ├── Discounts │ │ ├── DiscountListModel.cs │ │ └── DiscountModel.cs │ ├── Documents │ │ ├── DocumentListModel.cs │ │ ├── DocumentModel.cs │ │ ├── DocumentTypeModel.cs │ │ └── SimpleDocumentModel.cs │ ├── ExternalAuthentication │ │ └── AuthenticationMethodModel.cs │ ├── Home │ │ └── DashboardModel.cs │ ├── Knowledgebase │ │ ├── KnowledgebaseArticleGridModel.cs │ │ ├── KnowledgebaseArticleModel.cs │ │ ├── KnowledgebaseCategoryModel.cs │ │ └── KnowledgebaseRelatedArticleGridModel.cs │ ├── Layouts │ │ ├── BrandLayoutModel.cs │ │ ├── CategoryLayoutModel.cs │ │ ├── CollectionLayoutModel.cs │ │ ├── PageLayoutModel.cs │ │ └── ProductLayoutModel.cs │ ├── Localization │ │ ├── LanguageModel.cs │ │ ├── LanguageResourceFilterModel.cs │ │ └── LanguageResourceModel.cs │ ├── Logging │ │ ├── ActivityLogModel.cs │ │ ├── ActivityLogSearchModel.cs │ │ ├── ActivityLogTypeModel.cs │ │ ├── LogListModel.cs │ │ └── LogModel.cs │ ├── Messages │ │ ├── BannerModel.cs │ │ ├── CampaignModel.cs │ │ ├── ContactAttributeModel.cs │ │ ├── ContactAttributeValueModel.cs │ │ ├── ContactFormListModel.cs │ │ ├── ContactFormModel.cs │ │ ├── EmailAccountModel.cs │ │ ├── InteractiveFormAttributeModel.cs │ │ ├── InteractiveFormAttributeValueModel.cs │ │ ├── InteractiveFormModel.cs │ │ ├── MessageTemplateListModel.cs │ │ ├── MessageTemplateModel.cs │ │ ├── NewsLetterSubscriptionListModel.cs │ │ ├── NewsLetterSubscriptionModel.cs │ │ ├── NewsletterCategoryModel.cs │ │ ├── QueuedEmailListModel.cs │ │ └── QueuedEmailModel.cs │ ├── News │ │ ├── NewsCommentModel.cs │ │ ├── NewsItemListModel.cs │ │ └── NewsItemModel.cs │ ├── Orders │ │ ├── BestsellersReportLineModel.cs │ │ ├── BestsellersReportModel.cs │ │ ├── CheckoutAttributeModel.cs │ │ ├── CheckoutAttributeValueModel.cs │ │ ├── CountryReportLineModel.cs │ │ ├── CountryReportModel.cs │ │ ├── GiftVoucherListModel.cs │ │ ├── GiftVoucherModel.cs │ │ ├── MerchandiseReturnListModel.cs │ │ ├── MerchandiseReturnModel.cs │ │ ├── NeverSoldReportLineModel.cs │ │ ├── NeverSoldReportModel.cs │ │ ├── OrderAddressModel.cs │ │ ├── OrderAverageReportLineSummaryModel.cs │ │ ├── OrderIncompleteReportLineModel.cs │ │ ├── OrderListModel.cs │ │ ├── OrderModel.cs │ │ ├── OrderPeriodReportLineModel.cs │ │ ├── OrderStatusModel.cs │ │ ├── OrderTagModel.cs │ │ ├── PaymentTransactionListModel.cs │ │ ├── PaymentTransactionModel.cs │ │ ├── ShipmentListModel.cs │ │ └── ShipmentModel.cs │ ├── Pages │ │ ├── PageListModel.cs │ │ └── PageModel.cs │ ├── Payments │ │ ├── PaymentMethodModel.cs │ │ ├── PaymentMethodRestrictionModel.cs │ │ └── PaymentSettingsModel.cs │ ├── Permissions │ │ ├── PermissionActionModel.cs │ │ ├── PermissionMappingModel.cs │ │ └── PermissionRecordModel.cs │ ├── Plugins │ │ ├── MiscPluginModel.cs │ │ ├── OfficialFeedListModel.cs │ │ ├── PluginListModel.cs │ │ └── PluginModel.cs │ ├── PushNotifications │ │ ├── ConfigurationModel.cs │ │ ├── MessagesModel.cs │ │ ├── PushMessageGridModel.cs │ │ ├── PushModel.cs │ │ ├── PushRegistrationGridModel.cs │ │ └── ReceiversModel.cs │ ├── RoxyFileman │ │ ├── DirListModel.cs │ │ ├── FileListModel.cs │ │ └── ResponseMessage.cs │ ├── Settings │ │ ├── AdminSearchSettingsModel.cs │ │ ├── CatalogSettingsModel.cs │ │ ├── ContentSettingsModel.cs │ │ ├── CustomerSettingsModel.cs │ │ ├── FoundMenuItem.cs │ │ ├── GeneralCommonSettingsModel.cs │ │ ├── MediaSettingsModel.cs │ │ ├── MerchandiseReturnActionModel.cs │ │ ├── MerchandiseReturnReasonModel.cs │ │ ├── SalesSettingsModel.cs │ │ ├── SettingModel.cs │ │ ├── SortOptionModel.cs │ │ ├── StoreScopeModel.cs │ │ ├── SystemSettingsModel.cs │ │ └── VendorSettingsModel.cs │ ├── Shipping │ │ ├── DeliveryDateModel.cs │ │ ├── PickupPointModel.cs │ │ ├── ShippingMethodModel.cs │ │ ├── ShippingMethodRestrictionModel.cs │ │ ├── ShippingRateComputationMethodModel.cs │ │ ├── ShippingSettingsModel.cs │ │ └── WarehouseModel.cs │ ├── ShoppingCart │ │ ├── ShoppingCartItemModel.cs │ │ └── ShoppingCartModel.cs │ ├── Stores │ │ └── StoreModel.cs │ ├── Tasks │ │ └── ScheduleTaskModel.cs │ ├── Tax │ │ ├── TaxCategoryModel.cs │ │ ├── TaxProviderModel.cs │ │ └── TaxSettingsModel.cs │ └── Vendors │ │ ├── VendorListModel.cs │ │ ├── VendorModel.cs │ │ ├── VendorReviewListModel.cs │ │ └── VendorReviewModel.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── ActivityLogViewModelService.cs │ ├── AddressAttributeViewModelService.cs │ ├── AffiliateViewModelService.cs │ ├── BlogViewModelService.cs │ ├── BrandViewModelService.cs │ ├── CampaignViewModelService.cs │ ├── CategoryViewModelService.cs │ ├── CheckoutAttributeViewModelService.cs │ ├── CollectionViewModelService.cs │ ├── ContactAttributeViewModelService.cs │ ├── ContactFormViewModelService.cs │ ├── CountryViewModelService.cs │ ├── CourseViewModelService.cs │ ├── CurrencyViewModelService.cs │ ├── CustomerActionViewModelService.cs │ ├── CustomerAttributeViewModelService.cs │ ├── CustomerGroupViewModelService.cs │ ├── CustomerReminderViewModelService.cs │ ├── CustomerReportViewModelService.cs │ ├── CustomerTagViewModelService.cs │ ├── CustomerViewModelService.cs │ ├── DiscountViewModelService.cs │ ├── DocumentViewModelService.cs │ ├── EmailAccountViewModelService.cs │ ├── GiftVoucherViewModelService.cs │ ├── KnowledgebaseViewModelService.cs │ ├── LanguageViewModelService.cs │ ├── LogViewModelService.cs │ ├── MerchandiseReturnViewModelService.cs │ ├── NewsViewModelService.cs │ ├── OrderViewModelService.cs │ ├── PageViewModelService.cs │ ├── ProductReviewViewModelService.cs │ ├── ProductViewModelService.cs │ ├── ShipmentViewModelService.cs │ ├── StoreViewModelService.cs │ └── VendorViewModelService.cs ├── Startup │ └── StartupApplication.cs ├── Validators │ ├── Affiliate │ │ └── AffiliateValidator.cs │ ├── Blogs │ │ ├── BlogCategoryValidator.cs │ │ └── BlogPostValidator.cs │ ├── Catalog │ │ ├── AddAssociatedProductModelValidator.cs │ │ ├── AddBundleProductModelValidator.cs │ │ ├── AddCategoryProductModelValidator.cs │ │ ├── AddCollectionProductModelValidator.cs │ │ ├── AddCrossSellProductModelValidator.cs │ │ ├── AddProductSpecificationAttributeModelValidator.cs │ │ ├── AddRelatedProductModelValidator.cs │ │ ├── AddSimilarProductModelValidator.cs │ │ ├── AssociatedProductModelValidator.cs │ │ ├── BrandValidator.cs │ │ ├── BundleProductModelValidator.cs │ │ ├── CategoryProductModelValidator.cs │ │ ├── CategoryValidator.cs │ │ ├── CollectionProductModelValidator.cs │ │ ├── CollectionValidator.cs │ │ ├── CrossSellProductModelValidator.cs │ │ ├── PredefinedProductAttributeValueModelValidator.cs │ │ ├── ProductAttributeMappingModelValidator.cs │ │ ├── ProductAttributeValidator.cs │ │ ├── ProductAttributeValueModelValidator.cs │ │ ├── ProductCategoryModelValidator.cs │ │ ├── ProductCollectionModelValidator.cs │ │ ├── ProductPictureModelValidator.cs │ │ ├── ProductReviewValidator.cs │ │ ├── ProductSpecificationAttributeModelValidator.cs │ │ ├── ProductTagValidator.cs │ │ ├── ProductValidator.cs │ │ ├── RelatedProductModelValidator.cs │ │ ├── SimilarProductModelValidator.cs │ │ ├── SpecificationAttributeOptionValidator.cs │ │ ├── SpecificationAttributeValidator.cs │ │ └── TierPriceModelValidator.cs │ ├── Common │ │ ├── AddressAttributeValidator.cs │ │ ├── AddressAttributeValueValidator.cs │ │ ├── AddressValidator.cs │ │ ├── CommonValid.cs │ │ ├── LoginValidator.cs │ │ ├── ReviewValidator.cs │ │ └── UserFieldValidator.cs │ ├── Course │ │ ├── CourseLessonValidator.cs │ │ ├── CourseLevelValidator.cs │ │ ├── CourseSubjectValidator.cs │ │ └── CourseValidator.cs │ ├── Customers │ │ ├── CustomerActionConditionValidator.cs │ │ ├── CustomerActionValidator.cs │ │ ├── CustomerAddressValidator.cs │ │ ├── CustomerAttributeValidator.cs │ │ ├── CustomerAttributeValueValidator.cs │ │ ├── CustomerGroupValidator.cs │ │ ├── CustomerReminderValidator.cs │ │ ├── CustomerTagValidator.cs │ │ ├── CustomerValidator.cs │ │ ├── SalesEmployeeValidator.cs │ │ └── UserApiValidator.cs │ ├── Directory │ │ ├── CountryValidator.cs │ │ ├── CurrencyValidator.cs │ │ ├── MeasureDimensionValidator.cs │ │ ├── MeasureUnitValidator.cs │ │ ├── MeasureWeightValidator.cs │ │ └── StateProvinceValidator.cs │ ├── Discounts │ │ └── DiscountValidator.cs │ ├── Documents │ │ ├── DocumentTypeValidator.cs │ │ └── DocumentValidator.cs │ ├── Knowledgebase │ │ ├── KnowledgebaseArticleModelValidator.cs │ │ └── KnowledgebaseCategoryModelValidator.cs │ ├── Layouts │ │ ├── BrandLayoutValidator.cs │ │ ├── CategoryLayoutValidator.cs │ │ ├── CollectionLayoutValidator.cs │ │ ├── PageLayoutValidator.cs │ │ └── ProductLayoutValidator.cs │ ├── Localization │ │ ├── LanguageResourceValidator.cs │ │ └── LanguageValidator.cs │ ├── Messages │ │ ├── BannerValidator.cs │ │ ├── CampaignValidator.cs │ │ ├── ContactAttributeValidator.cs │ │ ├── ContactAttributeValueValidator.cs │ │ ├── EmailAccountValidator.cs │ │ ├── InteractiveFormAttributeValidator.cs │ │ ├── InteractiveFormAttributeValueValidator.cs │ │ ├── InteractiveFormValidator.cs │ │ ├── MessageTemplateValidator.cs │ │ ├── NewsLetterSubscriptionValidator.cs │ │ ├── NewsletterCategoryValidator.cs │ │ └── QueuedEmailValidator.cs │ ├── News │ │ └── NewsItemValidator.cs │ ├── Orders │ │ ├── CheckoutAttributeValidator.cs │ │ ├── CheckoutAttributeValueValidator.cs │ │ ├── GiftVoucherValidator.cs │ │ └── OrderStatusValidator.cs │ ├── Pages │ │ └── PageValidator.cs │ ├── Plugins │ │ └── PluginValidator.cs │ ├── Settings │ │ ├── LoyaltyPointsSettingsValidator.cs │ │ ├── MerchandiseReturnActionValidator.cs │ │ ├── MerchandiseReturnReasonValidator.cs │ │ ├── OrderSettingsValidator.cs │ │ └── SettingValidator.cs │ ├── Shipping │ │ ├── DeliveryDateValidator.cs │ │ ├── PickupPointValidator.cs │ │ ├── ShippingMethodValidator.cs │ │ └── WarehouseValidator.cs │ ├── Stores │ │ └── StoreValidator.cs │ ├── Tasks │ │ └── ScheduleTaskValidator.cs │ ├── Tax │ │ └── TaxCategoryValidator.cs │ └── Vendors │ │ ├── VendorReviewValidator.cs │ │ └── VendorValidator.cs └── wwwroot │ └── administration │ ├── License.txt │ ├── admin.common.js │ ├── admin.search.js │ ├── bootstrap-treeview.js │ ├── bootstrap │ ├── css │ │ ├── bootstrap-rtl.css │ │ ├── bootstrap-rtl.min.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── daterangepicker.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── daterangepicker.min.js │ │ ├── popper.min.js │ │ └── popper.min.js.map │ ├── build │ ├── css │ │ ├── custom-rtl.css │ │ ├── custom.css │ │ ├── font-awesome.css │ │ ├── font-awesome.css.map │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── B_Yekan.eot │ │ ├── B_Yekan.svg │ │ ├── B_Yekan.ttf │ │ ├── B_Yekan.woff │ │ ├── DroidKufi-Regular.eot │ │ ├── DroidKufi-Regular.ttf │ │ ├── DroidKufi-Regular.woff │ │ ├── DroidKufi-Regular.woff2 │ │ ├── FontAwesome.otf │ │ ├── Yekan-modified.eot │ │ ├── Yekan-modified.ttf │ │ ├── Yekan-modified.woff │ │ ├── eot │ │ │ ├── IRANSansWeb(FaNum).eot │ │ │ ├── IRANSansWeb(FaNum)_Black.eot │ │ │ ├── IRANSansWeb(FaNum)_Bold.eot │ │ │ ├── IRANSansWeb(FaNum)_Light.eot │ │ │ ├── IRANSansWeb(FaNum)_Medium.eot │ │ │ ├── IRANSansWeb(FaNum)_UltraLight.eot │ │ │ ├── IRANSansWeb.eot │ │ │ ├── IRANSansWeb_Black.eot │ │ │ ├── IRANSansWeb_Bold.eot │ │ │ ├── IRANSansWeb_Light.eot │ │ │ ├── IRANSansWeb_Medium.eot │ │ │ └── IRANSansWeb_UltraLight.eot │ │ ├── font_sans_pro │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-600.eot │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-600.svg │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-600.ttf │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-600.woff │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-600.woff2 │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-700.eot │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-700.svg │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-700.ttf │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-700.woff │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-700.woff2 │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-regular.eot │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-regular.svg │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-regular.ttf │ │ │ ├── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-regular.woff │ │ │ └── source-sans-pro-v12-cyrillic-ext_latin-ext_cyrillic_latin-regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── openSans-400.woff2 │ │ ├── openSans-600.woff2 │ │ ├── openSans-700.woff2 │ │ ├── ttf │ │ │ ├── IRANSansWeb(FaNum).ttf │ │ │ ├── IRANSansWeb(FaNum)_Black.ttf │ │ │ ├── IRANSansWeb(FaNum)_Bold.ttf │ │ │ ├── IRANSansWeb(FaNum)_Light.ttf │ │ │ ├── IRANSansWeb(FaNum)_Medium.ttf │ │ │ ├── IRANSansWeb(FaNum)_UltraLight.ttf │ │ │ ├── IRANSansWeb.ttf │ │ │ ├── IRANSansWeb_Black.ttf │ │ │ ├── IRANSansWeb_Bold.ttf │ │ │ ├── IRANSansWeb_Light.ttf │ │ │ ├── IRANSansWeb_Medium.ttf │ │ │ └── IRANSansWeb_UltraLight.ttf │ │ ├── woff │ │ │ ├── IRANSansWeb(FaNum).woff │ │ │ ├── IRANSansWeb(FaNum)_Black.woff │ │ │ ├── IRANSansWeb(FaNum)_Bold.woff │ │ │ ├── IRANSansWeb(FaNum)_Light.woff │ │ │ ├── IRANSansWeb(FaNum)_Medium.woff │ │ │ ├── IRANSansWeb(FaNum)_UltraLight.woff │ │ │ ├── IRANSansWeb.woff │ │ │ ├── IRANSansWeb_Black.woff │ │ │ ├── IRANSansWeb_Bold.woff │ │ │ ├── IRANSansWeb_Light.woff │ │ │ ├── IRANSansWeb_Medium.woff │ │ │ └── IRANSansWeb_UltraLight.woff │ │ └── woff2 │ │ │ ├── IRANSansWeb(FaNum).woff2 │ │ │ ├── IRANSansWeb(FaNum)_Black.woff2 │ │ │ ├── IRANSansWeb(FaNum)_Bold.woff2 │ │ │ ├── IRANSansWeb(FaNum)_Light.woff2 │ │ │ ├── IRANSansWeb(FaNum)_Medium.woff2 │ │ │ ├── IRANSansWeb(FaNum)_UltraLight.woff2 │ │ │ ├── IRANSansWeb.woff2 │ │ │ ├── IRANSansWeb_Black.woff2 │ │ │ ├── IRANSansWeb_Bold.woff2 │ │ │ ├── IRANSansWeb_Light.woff2 │ │ │ ├── IRANSansWeb_Medium.woff2 │ │ │ └── IRANSansWeb_UltraLight.woff2 │ ├── images │ │ ├── avatar.png │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── google-maps.gif │ │ ├── grandLogo.png │ │ └── loading.gif │ └── js │ │ ├── custom.js │ │ ├── jquery.min.js │ │ ├── moment.min.js │ │ └── smartresize.js │ ├── chart.min.js │ ├── codemirror │ ├── codemirror.css │ ├── codemirror.js │ ├── edit │ │ ├── closebrackets.js │ │ ├── closetag.js │ │ ├── continuelist.js │ │ ├── matchbrackets.js │ │ ├── matchtags.js │ │ └── trailingspace.js │ ├── hint │ │ ├── anyword-hint.js │ │ ├── css-hint.js │ │ ├── html-hint.js │ │ ├── javascript-hint.js │ │ ├── show-hint.css │ │ ├── show-hint.js │ │ ├── sql-hint.js │ │ └── xml-hint.js │ └── mode │ │ ├── css │ │ └── css.js │ │ ├── javascript │ │ └── javascript.js │ │ └── xml │ │ └── xml.js │ ├── farbtastic │ ├── farbtastic.css │ ├── farbtastic.js │ ├── marker.png │ ├── mask.png │ └── wheel.png │ ├── fineuploader │ ├── LICENSE │ ├── edit.gif │ ├── fineuploader-4.2.2.css │ ├── fineuploader-4.2.2.min.css │ ├── iframe.xss.response-4.2.2.js │ ├── jquery.fineuploader-4.2.2.js │ ├── jquery.fineuploader-4.2.2.min.js │ ├── loading.gif │ ├── placeholders │ │ ├── not_available-generic.png │ │ └── waiting-generic.png │ ├── processing.gif │ └── templates │ │ ├── default.html │ │ └── simple-thumbnails.html │ ├── jquery-ui-1.12.1.custom │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json │ ├── jquery-ui-themes │ └── smoothness │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── arrow-left-thick.png │ │ ├── arrow-right-thick.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jquery-ui-1.10.3.custom.min.css │ ├── jquery.tmpl.min.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.min.js │ ├── kendo │ ├── scripts │ │ └── 2019.2.514 │ │ │ ├── README │ │ │ ├── angular.min.js │ │ │ ├── changelog.html │ │ │ ├── cultures │ │ │ ├── kendo.culture.en-US.min.js │ │ │ └── kendo.culture.en-US.min.js.map │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── kendo.angular.min.js │ │ │ ├── kendo.angular.min.js.map │ │ │ ├── kendo.autocomplete.min.js │ │ │ ├── kendo.autocomplete.min.js.map │ │ │ ├── kendo.binder.min.js │ │ │ ├── kendo.binder.min.js.map │ │ │ ├── kendo.button.min.js │ │ │ ├── kendo.button.min.js.map │ │ │ ├── kendo.calendar.min.js │ │ │ ├── kendo.calendar.min.js.map │ │ │ ├── kendo.color.min.js │ │ │ ├── kendo.color.min.js.map │ │ │ ├── kendo.colorpicker.min.js │ │ │ ├── kendo.colorpicker.min.js.map │ │ │ ├── kendo.combobox.min.js │ │ │ ├── kendo.combobox.min.js.map │ │ │ ├── kendo.core.min.js │ │ │ ├── kendo.core.min.js.map │ │ │ ├── kendo.data.min.js │ │ │ ├── kendo.data.min.js.map │ │ │ ├── kendo.data.odata.min.js │ │ │ ├── kendo.data.odata.min.js.map │ │ │ ├── kendo.data.signalr.min.js │ │ │ ├── kendo.data.signalr.min.js.map │ │ │ ├── kendo.data.xml.min.js │ │ │ ├── kendo.data.xml.min.js.map │ │ │ ├── kendo.dateinput.min.js │ │ │ ├── kendo.dateinput.min.js.map │ │ │ ├── kendo.datepicker.min.js │ │ │ ├── kendo.datepicker.min.js.map │ │ │ ├── kendo.datetimepicker.min.js │ │ │ ├── kendo.datetimepicker.min.js.map │ │ │ ├── kendo.dialog.min.js │ │ │ ├── kendo.dialog.min.js.map │ │ │ ├── kendo.draganddrop.min.js │ │ │ ├── kendo.draganddrop.min.js.map │ │ │ ├── kendo.dropdownlist.min.js │ │ │ ├── kendo.dropdownlist.min.js.map │ │ │ ├── kendo.editable.min.js │ │ │ ├── kendo.editable.min.js.map │ │ │ ├── kendo.fx.min.js │ │ │ ├── kendo.fx.min.js.map │ │ │ ├── kendo.grid.js │ │ │ ├── kendo.list.min.js │ │ │ ├── kendo.list.min.js.map │ │ │ ├── kendo.listbox.min.js │ │ │ ├── kendo.listbox.min.js.map │ │ │ ├── kendo.listview.min.js │ │ │ ├── kendo.listview.min.js.map │ │ │ ├── kendo.maskedtextbox.min.js │ │ │ ├── kendo.maskedtextbox.min.js.map │ │ │ ├── kendo.menu.min.js │ │ │ ├── kendo.menu.min.js.map │ │ │ ├── kendo.mobile.actionsheet.min.js │ │ │ ├── kendo.mobile.actionsheet.min.js.map │ │ │ ├── kendo.mobile.application.min.js │ │ │ ├── kendo.mobile.application.min.js.map │ │ │ ├── kendo.mobile.button.min.js │ │ │ ├── kendo.mobile.button.min.js.map │ │ │ ├── kendo.mobile.buttongroup.min.js │ │ │ ├── kendo.mobile.buttongroup.min.js.map │ │ │ ├── kendo.mobile.collapsible.min.js │ │ │ ├── kendo.mobile.collapsible.min.js.map │ │ │ ├── kendo.mobile.drawer.min.js │ │ │ ├── kendo.mobile.drawer.min.js.map │ │ │ ├── kendo.mobile.listview.min.js │ │ │ ├── kendo.mobile.listview.min.js.map │ │ │ ├── kendo.mobile.loader.min.js │ │ │ ├── kendo.mobile.loader.min.js.map │ │ │ ├── kendo.mobile.modalview.min.js │ │ │ ├── kendo.mobile.modalview.min.js.map │ │ │ ├── kendo.mobile.navbar.min.js │ │ │ ├── kendo.mobile.navbar.min.js.map │ │ │ ├── kendo.mobile.pane.min.js │ │ │ ├── kendo.mobile.pane.min.js.map │ │ │ ├── kendo.mobile.popover.min.js │ │ │ ├── kendo.mobile.popover.min.js.map │ │ │ ├── kendo.mobile.scroller.min.js │ │ │ ├── kendo.mobile.scroller.min.js.map │ │ │ ├── kendo.mobile.scrollview.min.js │ │ │ ├── kendo.mobile.scrollview.min.js.map │ │ │ ├── kendo.mobile.shim.min.js │ │ │ ├── kendo.mobile.shim.min.js.map │ │ │ ├── kendo.mobile.splitview.min.js │ │ │ ├── kendo.mobile.splitview.min.js.map │ │ │ ├── kendo.mobile.switch.min.js │ │ │ ├── kendo.mobile.switch.min.js.map │ │ │ ├── kendo.mobile.tabstrip.min.js │ │ │ ├── kendo.mobile.tabstrip.min.js.map │ │ │ ├── kendo.mobile.view.min.js │ │ │ ├── kendo.mobile.view.min.js.map │ │ │ ├── kendo.multiselect.min.js │ │ │ ├── kendo.multiselect.min.js.map │ │ │ ├── kendo.notification.min.js │ │ │ ├── kendo.notification.min.js.map │ │ │ ├── kendo.numerictextbox.min.js │ │ │ ├── kendo.numerictextbox.min.js.map │ │ │ ├── kendo.pager.min.js │ │ │ ├── kendo.pager.min.js.map │ │ │ ├── kendo.panelbar.min.js │ │ │ ├── kendo.panelbar.min.js.map │ │ │ ├── kendo.popup.min.js │ │ │ ├── kendo.popup.min.js.map │ │ │ ├── kendo.progressbar.min.js │ │ │ ├── kendo.progressbar.min.js.map │ │ │ ├── kendo.resizable.min.js │ │ │ ├── kendo.resizable.min.js.map │ │ │ ├── kendo.responsivepanel.min.js │ │ │ ├── kendo.responsivepanel.min.js.map │ │ │ ├── kendo.router.min.js │ │ │ ├── kendo.router.min.js.map │ │ │ ├── kendo.selectable.min.js │ │ │ ├── kendo.selectable.min.js.map │ │ │ ├── kendo.slider.min.js │ │ │ ├── kendo.slider.min.js.map │ │ │ ├── kendo.sortable.min.js │ │ │ ├── kendo.sortable.min.js.map │ │ │ ├── kendo.splitter.min.js │ │ │ ├── kendo.splitter.min.js.map │ │ │ ├── kendo.tabstrip.min.js │ │ │ ├── kendo.tabstrip.min.js.map │ │ │ ├── kendo.timepicker.min.js │ │ │ ├── kendo.timepicker.min.js.map │ │ │ ├── kendo.timezones.min.js │ │ │ ├── kendo.timezones.min.js.map │ │ │ ├── kendo.toolbar.min.js │ │ │ ├── kendo.toolbar.min.js.map │ │ │ ├── kendo.tooltip.min.js │ │ │ ├── kendo.tooltip.min.js.map │ │ │ ├── kendo.touch.min.js │ │ │ ├── kendo.touch.min.js.map │ │ │ ├── kendo.ui.core.min.js │ │ │ ├── kendo.ui.core.min.js.map │ │ │ ├── kendo.userevents.min.js │ │ │ ├── kendo.userevents.min.js.map │ │ │ ├── kendo.validator.min.js │ │ │ ├── kendo.validator.min.js.map │ │ │ ├── kendo.view.min.js │ │ │ ├── kendo.view.min.js.map │ │ │ ├── kendo.virtuallist.min.js │ │ │ ├── kendo.virtuallist.min.js.map │ │ │ ├── kendo.window.min.js │ │ │ ├── kendo.window.min.js.map │ │ │ └── messages │ │ │ ├── kendo.messages.bg-BG.min.js │ │ │ ├── kendo.messages.bg-BG.min.js.map │ │ │ ├── kendo.messages.cs-CZ.min.js │ │ │ ├── kendo.messages.cs-CZ.min.js.map │ │ │ ├── kendo.messages.da-DK.min.js │ │ │ ├── kendo.messages.da-DK.min.js.map │ │ │ ├── kendo.messages.de-AT.min.js │ │ │ ├── kendo.messages.de-AT.min.js.map │ │ │ ├── kendo.messages.de-CH.min.js │ │ │ ├── kendo.messages.de-CH.min.js.map │ │ │ ├── kendo.messages.de-DE.min.js │ │ │ ├── kendo.messages.de-DE.min.js.map │ │ │ ├── kendo.messages.de-LI.min.js │ │ │ ├── kendo.messages.de-LI.min.js.map │ │ │ ├── kendo.messages.el-GR.min.js │ │ │ ├── kendo.messages.el-GR.min.js.map │ │ │ ├── kendo.messages.en-AU.min.js │ │ │ ├── kendo.messages.en-AU.min.js.map │ │ │ ├── kendo.messages.en-CA.min.js │ │ │ ├── kendo.messages.en-CA.min.js.map │ │ │ ├── kendo.messages.en-GB.min.js │ │ │ ├── kendo.messages.en-GB.min.js.map │ │ │ ├── kendo.messages.en-US.min.js │ │ │ ├── kendo.messages.en-US.min.js.map │ │ │ ├── kendo.messages.es-AR.min.js │ │ │ ├── kendo.messages.es-AR.min.js.map │ │ │ ├── kendo.messages.es-BO.min.js │ │ │ ├── kendo.messages.es-BO.min.js.map │ │ │ ├── kendo.messages.es-CL.min.js │ │ │ ├── kendo.messages.es-CL.min.js.map │ │ │ ├── kendo.messages.es-CO.min.js │ │ │ ├── kendo.messages.es-CO.min.js.map │ │ │ ├── kendo.messages.es-CR.min.js │ │ │ ├── kendo.messages.es-CR.min.js.map │ │ │ ├── kendo.messages.es-DO.min.js │ │ │ ├── kendo.messages.es-DO.min.js.map │ │ │ ├── kendo.messages.es-EC.min.js │ │ │ ├── kendo.messages.es-EC.min.js.map │ │ │ ├── kendo.messages.es-ES.min.js │ │ │ ├── kendo.messages.es-ES.min.js.map │ │ │ ├── kendo.messages.es-GT.min.js │ │ │ ├── kendo.messages.es-GT.min.js.map │ │ │ ├── kendo.messages.es-HN.min.js │ │ │ ├── kendo.messages.es-HN.min.js.map │ │ │ ├── kendo.messages.es-MX.min.js │ │ │ ├── kendo.messages.es-MX.min.js.map │ │ │ ├── kendo.messages.es-NI.min.js │ │ │ ├── kendo.messages.es-NI.min.js.map │ │ │ ├── kendo.messages.es-PA.min.js │ │ │ ├── kendo.messages.es-PA.min.js.map │ │ │ ├── kendo.messages.es-PE.min.js │ │ │ ├── kendo.messages.es-PE.min.js.map │ │ │ ├── kendo.messages.es-PR.min.js │ │ │ ├── kendo.messages.es-PR.min.js.map │ │ │ ├── kendo.messages.es-PY.min.js │ │ │ ├── kendo.messages.es-PY.min.js.map │ │ │ ├── kendo.messages.es-US.min.js │ │ │ ├── kendo.messages.es-US.min.js.map │ │ │ ├── kendo.messages.es-UY.min.js │ │ │ ├── kendo.messages.es-UY.min.js.map │ │ │ ├── kendo.messages.es-VE.min.js │ │ │ ├── kendo.messages.es-VE.min.js.map │ │ │ ├── kendo.messages.fa-IR.min.js │ │ │ ├── kendo.messages.fa-IR.min.js.map │ │ │ ├── kendo.messages.fi-FI.min.js │ │ │ ├── kendo.messages.fi-FI.min.js.map │ │ │ ├── kendo.messages.fr-BE.min.js │ │ │ ├── kendo.messages.fr-BE.min.js.map │ │ │ ├── kendo.messages.fr-CA.min.js │ │ │ ├── kendo.messages.fr-CA.min.js.map │ │ │ ├── kendo.messages.fr-CD.min.js │ │ │ ├── kendo.messages.fr-CD.min.js.map │ │ │ ├── kendo.messages.fr-CH.min.js │ │ │ ├── kendo.messages.fr-CH.min.js.map │ │ │ ├── kendo.messages.fr-CI.min.js │ │ │ ├── kendo.messages.fr-CI.min.js.map │ │ │ ├── kendo.messages.fr-CM.min.js │ │ │ ├── kendo.messages.fr-CM.min.js.map │ │ │ ├── kendo.messages.fr-FR.min.js │ │ │ ├── kendo.messages.fr-FR.min.js.map │ │ │ ├── kendo.messages.fr-HT.min.js │ │ │ ├── kendo.messages.fr-HT.min.js.map │ │ │ ├── kendo.messages.fr-LU.min.js │ │ │ ├── kendo.messages.fr-LU.min.js.map │ │ │ ├── kendo.messages.fr-MA.min.js │ │ │ ├── kendo.messages.fr-MA.min.js.map │ │ │ ├── kendo.messages.fr-MC.min.js │ │ │ ├── kendo.messages.fr-MC.min.js.map │ │ │ ├── kendo.messages.fr-ML.min.js │ │ │ ├── kendo.messages.fr-ML.min.js.map │ │ │ ├── kendo.messages.fr-SN.min.js │ │ │ ├── kendo.messages.fr-SN.min.js.map │ │ │ ├── kendo.messages.he-IL.min.js │ │ │ ├── kendo.messages.he-IL.min.js.map │ │ │ ├── kendo.messages.hu-HU.min.js │ │ │ ├── kendo.messages.hu-HU.min.js.map │ │ │ ├── kendo.messages.hy-AM.min.js │ │ │ ├── kendo.messages.hy-AM.min.js.map │ │ │ ├── kendo.messages.it-CH.min.js │ │ │ ├── kendo.messages.it-CH.min.js.map │ │ │ ├── kendo.messages.it-IT.min.js │ │ │ ├── kendo.messages.it-IT.min.js.map │ │ │ ├── kendo.messages.ja-JP.min.js │ │ │ ├── kendo.messages.ja-JP.min.js.map │ │ │ ├── kendo.messages.mk-MK.min.js │ │ │ ├── kendo.messages.mk-MK.min.js.map │ │ │ ├── kendo.messages.nb-NO.min.js │ │ │ ├── kendo.messages.nb-NO.min.js.map │ │ │ ├── kendo.messages.nl-BE.min.js │ │ │ ├── kendo.messages.nl-BE.min.js.map │ │ │ ├── kendo.messages.nl-NL.min.js │ │ │ ├── kendo.messages.nl-NL.min.js.map │ │ │ ├── kendo.messages.pl-PL.min.js │ │ │ ├── kendo.messages.pl-PL.min.js.map │ │ │ ├── kendo.messages.pt-BR.min.js │ │ │ ├── kendo.messages.pt-BR.min.js.map │ │ │ ├── kendo.messages.pt-PT.min.js │ │ │ ├── kendo.messages.pt-PT.min.js.map │ │ │ ├── kendo.messages.ro-RO.min.js │ │ │ ├── kendo.messages.ro-RO.min.js.map │ │ │ ├── kendo.messages.ru-RU.min.js │ │ │ ├── kendo.messages.ru-RU.min.js.map │ │ │ ├── kendo.messages.sk-SK.min.js │ │ │ ├── kendo.messages.sk-SK.min.js.map │ │ │ ├── kendo.messages.sq-AL.min.js │ │ │ ├── kendo.messages.sq-AL.min.js.map │ │ │ ├── kendo.messages.sr-Latn-RS.min.js │ │ │ ├── kendo.messages.sr-Latn-RS.min.js.map │ │ │ ├── kendo.messages.sv-SE.min.js │ │ │ ├── kendo.messages.sv-SE.min.js.map │ │ │ ├── kendo.messages.tr-TR.min.js │ │ │ ├── kendo.messages.tr-TR.min.js.map │ │ │ ├── kendo.messages.uk-UA.min.js │ │ │ ├── kendo.messages.uk-UA.min.js.map │ │ │ ├── kendo.messages.zh-CN.min.js │ │ │ ├── kendo.messages.zh-CN.min.js.map │ │ │ ├── kendo.messages.zh-HK.min.js │ │ │ ├── kendo.messages.zh-HK.min.js.map │ │ │ ├── kendo.messages.zh-TW.min.js │ │ │ └── kendo.messages.zh-TW.min.js.map │ └── styles │ │ └── 2019.2.514 │ │ ├── Material │ │ ├── editor.png │ │ ├── imagebrowser.png │ │ ├── indeterminate.gif │ │ ├── loading-image.gif │ │ ├── loading.gif │ │ ├── loading_2x.gif │ │ ├── markers.png │ │ ├── markers_2x.png │ │ ├── slider-h.gif │ │ ├── slider-v.gif │ │ ├── sprite.png │ │ ├── sprite_2x.png │ │ ├── sprite_kpi.png │ │ └── sprite_kpi_2x.png │ │ ├── fonts │ │ ├── DejaVu │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ ├── DejaVuSans-ExtraLight.ttf │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ ├── DejaVuSans.ttf │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ ├── DejaVuSansMono.ttf │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ ├── DejaVuSerif.ttf │ │ │ └── LICENSE.txt │ │ └── glyphs │ │ │ ├── KendoUIGlyphs.eot │ │ │ ├── KendoUIGlyphs.svg │ │ │ ├── KendoUIGlyphs.ttf │ │ │ ├── KendoUIGlyphs.woff │ │ │ ├── WebComponentsIcons.eot │ │ │ ├── WebComponentsIcons.svg │ │ │ ├── WebComponentsIcons.ttf │ │ │ └── WebComponentsIcons.woff │ │ ├── images │ │ ├── back.png │ │ ├── kendoui.svg │ │ ├── kendoui.ttf │ │ ├── kendoui.woff │ │ ├── wp8_icons.png │ │ └── wp8_inverseicons.png │ │ ├── kendo.common-material.min.css │ │ ├── kendo.common-material.min.css.map │ │ ├── kendo.common.min.css │ │ ├── kendo.common.min.css.map │ │ ├── kendo.dataviz.mobile.min.css │ │ ├── kendo.dataviz.mobile.min.css.map │ │ ├── kendo.default.min.css │ │ ├── kendo.default.min.css.map │ │ ├── kendo.default.mobile.min.css │ │ ├── kendo.default.mobile.min.css.map │ │ ├── kendo.material.min.css │ │ ├── kendo.material.min.css.map │ │ ├── kendo.material.mobile.min.css │ │ ├── kendo.material.mobile.min.css.map │ │ ├── kendo.mobile.material.min.css │ │ ├── kendo.mobile.material.min.css.map │ │ ├── kendo.rtl.min.css │ │ └── kendo.rtl.min.css.map │ ├── roxy_fileman │ ├── LICENSE.txt │ ├── conf.json │ ├── css │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui-1.10.4.custom.css │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ ├── main.css │ │ └── main.min.css │ ├── images │ │ ├── action-folder-paste.png │ │ ├── action-folder-rename.png │ │ ├── arrow_down.png │ │ ├── arrow_up.png │ │ ├── blank.gif │ │ ├── copy.png │ │ ├── cut.png │ │ ├── dir-minus.png │ │ ├── dir-plus.png │ │ ├── file-add.png │ │ ├── file-delete.png │ │ ├── file-download.png │ │ ├── file-duplicate.png │ │ ├── file-upload.png │ │ ├── filetypes │ │ │ ├── big │ │ │ │ ├── file_extension_3gp.png │ │ │ │ ├── file_extension_7z.png │ │ │ │ ├── file_extension_ace.png │ │ │ │ ├── file_extension_ai.png │ │ │ │ ├── file_extension_aif.png │ │ │ │ ├── file_extension_aiff.png │ │ │ │ ├── file_extension_amr.png │ │ │ │ ├── file_extension_asf.png │ │ │ │ ├── file_extension_asx.png │ │ │ │ ├── file_extension_bat.png │ │ │ │ ├── file_extension_bin.png │ │ │ │ ├── file_extension_bmp.png │ │ │ │ ├── file_extension_bup.png │ │ │ │ ├── file_extension_cab.png │ │ │ │ ├── file_extension_cbr.png │ │ │ │ ├── file_extension_cda.png │ │ │ │ ├── file_extension_cdl.png │ │ │ │ ├── file_extension_cdr.png │ │ │ │ ├── file_extension_chm.png │ │ │ │ ├── file_extension_dat.png │ │ │ │ ├── file_extension_divx.png │ │ │ │ ├── file_extension_dll.png │ │ │ │ ├── file_extension_dmg.png │ │ │ │ ├── file_extension_doc.png │ │ │ │ ├── file_extension_dss.png │ │ │ │ ├── file_extension_dvf.png │ │ │ │ ├── file_extension_dwg.png │ │ │ │ ├── file_extension_eml.png │ │ │ │ ├── file_extension_eps.png │ │ │ │ ├── file_extension_exe.png │ │ │ │ ├── file_extension_fla.png │ │ │ │ ├── file_extension_flv.png │ │ │ │ ├── file_extension_gif.png │ │ │ │ ├── file_extension_gz.png │ │ │ │ ├── file_extension_hqx.png │ │ │ │ ├── file_extension_htm.png │ │ │ │ ├── file_extension_html.png │ │ │ │ ├── file_extension_ifo.png │ │ │ │ ├── file_extension_indd.png │ │ │ │ ├── file_extension_iso.png │ │ │ │ ├── file_extension_jar.png │ │ │ │ ├── file_extension_jpeg.png │ │ │ │ ├── file_extension_jpg.png │ │ │ │ ├── file_extension_lnk.png │ │ │ │ ├── file_extension_log.png │ │ │ │ ├── file_extension_m4a.png │ │ │ │ ├── file_extension_m4b.png │ │ │ │ ├── file_extension_m4p.png │ │ │ │ ├── file_extension_m4v.png │ │ │ │ ├── file_extension_mcd.png │ │ │ │ ├── file_extension_mdb.png │ │ │ │ ├── file_extension_mid.png │ │ │ │ ├── file_extension_mov.png │ │ │ │ ├── file_extension_mp2.png │ │ │ │ ├── file_extension_mp4.png │ │ │ │ ├── file_extension_mpeg.png │ │ │ │ ├── file_extension_mpg.png │ │ │ │ ├── file_extension_msi.png │ │ │ │ ├── file_extension_mswmm.png │ │ │ │ ├── file_extension_ogg.png │ │ │ │ ├── file_extension_pdf.png │ │ │ │ ├── file_extension_png.png │ │ │ │ ├── file_extension_pps.png │ │ │ │ ├── file_extension_ps.png │ │ │ │ ├── file_extension_psd.png │ │ │ │ ├── file_extension_pst.png │ │ │ │ ├── file_extension_ptb.png │ │ │ │ ├── file_extension_pub.png │ │ │ │ ├── file_extension_qbb.png │ │ │ │ ├── file_extension_qbw.png │ │ │ │ ├── file_extension_qxd.png │ │ │ │ ├── file_extension_ram.png │ │ │ │ ├── file_extension_rar.png │ │ │ │ ├── file_extension_rm.png │ │ │ │ ├── file_extension_rmvb.png │ │ │ │ ├── file_extension_rtf.png │ │ │ │ ├── file_extension_sea.png │ │ │ │ ├── file_extension_ses.png │ │ │ │ ├── file_extension_sit.png │ │ │ │ ├── file_extension_sitx.png │ │ │ │ ├── file_extension_ss.png │ │ │ │ ├── file_extension_swf.png │ │ │ │ ├── file_extension_tgz.png │ │ │ │ ├── file_extension_thm.png │ │ │ │ ├── file_extension_tif.png │ │ │ │ ├── file_extension_tmp.png │ │ │ │ ├── file_extension_torrent.png │ │ │ │ ├── file_extension_ttf.png │ │ │ │ ├── file_extension_txt.png │ │ │ │ ├── file_extension_vcd.png │ │ │ │ ├── file_extension_vob.png │ │ │ │ ├── file_extension_wav.png │ │ │ │ ├── file_extension_wma.png │ │ │ │ ├── file_extension_wmv.png │ │ │ │ ├── file_extension_wps.png │ │ │ │ ├── file_extension_xls.png │ │ │ │ ├── file_extension_xpi.png │ │ │ │ ├── file_extension_zip.png │ │ │ │ └── unknown.png │ │ │ ├── file_extension_3gp.png │ │ │ ├── file_extension_7z.png │ │ │ ├── file_extension_ace.png │ │ │ ├── file_extension_ai.png │ │ │ ├── file_extension_aif.png │ │ │ ├── file_extension_aiff.png │ │ │ ├── file_extension_amr.png │ │ │ ├── file_extension_asf.png │ │ │ ├── file_extension_asx.png │ │ │ ├── file_extension_bat.png │ │ │ ├── file_extension_bin.png │ │ │ ├── file_extension_bmp.png │ │ │ ├── file_extension_bup.png │ │ │ ├── file_extension_cab.png │ │ │ ├── file_extension_cbr.png │ │ │ ├── file_extension_cda.png │ │ │ ├── file_extension_cdl.png │ │ │ ├── file_extension_cdr.png │ │ │ ├── file_extension_chm.png │ │ │ ├── file_extension_dat.png │ │ │ ├── file_extension_divx.png │ │ │ ├── file_extension_dll.png │ │ │ ├── file_extension_dmg.png │ │ │ ├── file_extension_doc.png │ │ │ ├── file_extension_dss.png │ │ │ ├── file_extension_dvf.png │ │ │ ├── file_extension_dwg.png │ │ │ ├── file_extension_eml.png │ │ │ ├── file_extension_eps.png │ │ │ ├── file_extension_exe.png │ │ │ ├── file_extension_fla.png │ │ │ ├── file_extension_flv.png │ │ │ ├── file_extension_gif.png │ │ │ ├── file_extension_gz.png │ │ │ ├── file_extension_hqx.png │ │ │ ├── file_extension_htm.png │ │ │ ├── file_extension_html.png │ │ │ ├── file_extension_ifo.png │ │ │ ├── file_extension_indd.png │ │ │ ├── file_extension_iso.png │ │ │ ├── file_extension_jar.png │ │ │ ├── file_extension_jpeg.png │ │ │ ├── file_extension_jpg.png │ │ │ ├── file_extension_lnk.png │ │ │ ├── file_extension_log.png │ │ │ ├── file_extension_m4a.png │ │ │ ├── file_extension_m4b.png │ │ │ ├── file_extension_m4p.png │ │ │ ├── file_extension_m4v.png │ │ │ ├── file_extension_mcd.png │ │ │ ├── file_extension_mdb.png │ │ │ ├── file_extension_mid.png │ │ │ ├── file_extension_mov.png │ │ │ ├── file_extension_mp2.png │ │ │ ├── file_extension_mp4.png │ │ │ ├── file_extension_mpeg.png │ │ │ ├── file_extension_mpg.png │ │ │ ├── file_extension_msi.png │ │ │ ├── file_extension_mswmm.png │ │ │ ├── file_extension_ogg.png │ │ │ ├── file_extension_pdf.png │ │ │ ├── file_extension_png.png │ │ │ ├── file_extension_pps.png │ │ │ ├── file_extension_ps.png │ │ │ ├── file_extension_psd.png │ │ │ ├── file_extension_pst.png │ │ │ ├── file_extension_ptb.png │ │ │ ├── file_extension_pub.png │ │ │ ├── file_extension_qbb.png │ │ │ ├── file_extension_qbw.png │ │ │ ├── file_extension_qxd.png │ │ │ ├── file_extension_ram.png │ │ │ ├── file_extension_rar.png │ │ │ ├── file_extension_rm.png │ │ │ ├── file_extension_rmvb.png │ │ │ ├── file_extension_rtf.png │ │ │ ├── file_extension_sea.png │ │ │ ├── file_extension_ses.png │ │ │ ├── file_extension_sit.png │ │ │ ├── file_extension_sitx.png │ │ │ ├── file_extension_ss.png │ │ │ ├── file_extension_swf.png │ │ │ ├── file_extension_tgz.png │ │ │ ├── file_extension_thm.png │ │ │ ├── file_extension_tif.png │ │ │ ├── file_extension_tmp.png │ │ │ ├── file_extension_torrent.png │ │ │ ├── file_extension_ttf.png │ │ │ ├── file_extension_txt.png │ │ │ ├── file_extension_vcd.png │ │ │ ├── file_extension_vob.png │ │ │ ├── file_extension_wav.png │ │ │ ├── file_extension_wma.png │ │ │ ├── file_extension_wmv.png │ │ │ ├── file_extension_wps.png │ │ │ ├── file_extension_xls.png │ │ │ ├── file_extension_xpi.png │ │ │ ├── file_extension_zip.png │ │ │ └── unknown.png │ │ ├── find.png │ │ ├── folder-add.png │ │ ├── folder-delete.png │ │ ├── folder-download.png │ │ ├── folder-green.png │ │ ├── folder-opened.png │ │ ├── folder.png │ │ ├── loading-dir.gif │ │ ├── loading.gif │ │ ├── paste.png │ │ ├── preview.png │ │ ├── rename.png │ │ ├── search.png │ │ ├── select.png │ │ ├── sprite.png │ │ ├── stripes-reverse.gif │ │ ├── stripes.gif │ │ ├── upload-big.png │ │ ├── view-list.png │ │ └── view-tile.png │ ├── index.html │ ├── js │ │ ├── custom.js │ │ ├── directory.js │ │ ├── file.js │ │ ├── filetypes.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-dateFormat.min.js │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ ├── main.js │ │ ├── main.min.js │ │ ├── mini-main.js │ │ ├── tiny_mce_popup.js │ │ └── utils.js │ └── lang │ │ ├── bg.json │ │ ├── cs.json │ │ ├── cs1.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── hu.json │ │ ├── it.json │ │ ├── pl.json │ │ └── pt.json │ ├── simple-line-icons │ ├── License.txt │ ├── Readme.txt │ ├── fonts │ │ ├── Simple-Line-Icons.dev.svg │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ └── Simple-Line-Icons.woff │ ├── icons-lte-ie7.js │ ├── simple-line-icons.css │ └── simple-line-icons.min.css │ ├── summernote │ ├── font │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ ├── summernote.woff │ │ └── summernote.woff2 │ ├── summernote.min.css │ ├── summernote.min.js │ ├── summernote.min.js.LICENSE.txt │ └── summernote.min.js.map │ ├── tagEditor │ ├── jquery.caret.min.js │ ├── jquery.tag-editor.css │ └── jquery.tag-editor.min.js │ └── typeahead.js ├── Grand.Web.Common ├── Components │ ├── BaseAdminViewComponent.cs │ ├── BaseViewComponent.cs │ ├── BaseViewComponentAttribute.cs │ ├── JsonContentViewComponentResult.cs │ └── ViewComponentExtensions.cs ├── Controllers │ ├── BaseController.cs │ ├── BasePaymentController.cs │ ├── BasePluginController.cs │ ├── BaseShippingController.cs │ └── ControllerExtensions.cs ├── DataSource │ ├── DataSourceRequest.cs │ └── DataSourceResult.cs ├── Events │ ├── ActionExecutingContextNotification.cs │ └── AdminTabStripCreated.cs ├── Extensions │ ├── ApiExplorerIgnores.cs │ ├── CommonExtensions.cs │ ├── HtmlExtensions.cs │ ├── ModelStateExtensions.cs │ └── SessionExtensions.cs ├── Filters │ ├── AffiliateAttribute.cs │ ├── ArgumentNameFilterAttribute.cs │ ├── AuthorizeAdminAttribute.cs │ ├── AuthorizeVendorAttribute.cs │ ├── ClosedStoreAttribute.cs │ ├── CustomerActivityAttribute.cs │ ├── LanguageAttribute.cs │ ├── PasswordExpiredAttribute.cs │ ├── PublicStoreAttribute.cs │ └── ValidateCaptchaAttribute.cs ├── Grand.Web.Common.csproj ├── Infrastructure │ ├── ApplicationBuilderExtensions.cs │ └── ServiceCollectionExtensions.cs ├── Link │ ├── IGroupLinkModel.cs │ └── IStoreLinkModel.cs ├── Localization │ └── LocService.cs ├── Menu │ ├── IAdminMenuProvider.cs │ ├── SiteMap.cs │ └── SiteMapNode.cs ├── Middleware │ ├── DbVersionCheckMiddleware.cs │ ├── InstallUrlMiddleware.cs │ ├── PoweredByMiddleware.cs │ └── WorkContextMiddleware.cs ├── Models │ ├── CustomerGroupModel.cs │ ├── DatePickerDropDownsModel.cs │ ├── DeleteConfirmationModel.cs │ ├── ILocalizedModel.cs │ ├── ILocalizedModelLocal.cs │ ├── ISlugModelLocal.cs │ └── StoreModel.cs ├── Page │ ├── IPageHeadBuilder.cs │ ├── NotifyType.cs │ ├── PageHeadBuilder.cs │ ├── Paging │ │ ├── BasePageableModel.cs │ │ └── IPageableModel.cs │ └── ResourceLocation.cs ├── Routing │ ├── GrandRedirectResultExecutor.cs │ ├── LanguageParameterTransformer.cs │ └── SlugRouteTransformer.cs ├── Security │ ├── Authorization │ │ ├── PermissionAuthorizeActionAttribute.cs │ │ └── PermissionAuthorizeAttribute.cs │ └── Captcha │ │ ├── CaptchaSettings.cs │ │ ├── CaptchaSettingsExtension.cs │ │ ├── GoogleReCaptchaResponse.cs │ │ ├── GoogleReCaptchaValidator.cs │ │ ├── GoogleReCaptchaVersion.cs │ │ └── GoogleRecaptchaControl.cs ├── Startup │ ├── AuthenticationStartup.cs │ ├── DbCheckStartup.cs │ ├── ErrorHandlerStartup.cs │ ├── ForwardedHeadersStartup.cs │ ├── GrandCommonStartup.cs │ ├── GrandMvcStartup.cs │ ├── HostFilteringStartup.cs │ ├── StartupApplication.cs │ ├── TaskHandlerStartup.cs │ └── UrlRewriteStartup.cs ├── StoreHelper.cs ├── TagHelpers │ ├── Admin │ │ ├── AdminDeleteConfirmationTagHelper.cs │ │ ├── AdminInputTagHelper.cs │ │ ├── AdminLabelTagHelper.cs │ │ ├── AdminSelectTagHelper.cs │ │ ├── AdminTabAppendTagHelper.cs │ │ ├── AdminTabContentTagHelper.cs │ │ ├── AdminTabStripItemTagHelper.cs │ │ ├── AdminTabStripItemsTagHelper.cs │ │ ├── AdminTabStripTagHelper.cs │ │ ├── AdminTextAreaTagHelper.cs │ │ └── Extend │ │ │ ├── DefaultDisplayTemplates.cs │ │ │ ├── DefaultEditorTemplates.cs │ │ │ ├── DefaultHtmlGenerator.cs │ │ │ ├── ExpressionHelper.cs │ │ │ ├── ExpressionMetadataProvider.cs │ │ │ ├── FormatWeekHelper.cs │ │ │ ├── NameAndIdProvider.cs │ │ │ ├── TemplateBuilder.cs │ │ │ ├── TemplateRenderer.cs │ │ │ ├── ValidationHelpers.cs │ │ │ ├── ViewBuffer.cs │ │ │ ├── ViewBufferPage.cs │ │ │ └── ViewBufferTextWriter.cs │ ├── CanonicalUrlsTagHelper.cs │ ├── DatePickerDropDownsTagHelper.cs │ ├── GenerateCaptchaTagHelper.cs │ ├── GrandTextAreaTagHelper.cs │ ├── HeadCustomTagHelper.cs │ ├── HtmlClassTagHelper.cs │ ├── HtmlTagHelper.cs │ ├── IResourceManager.cs │ ├── InputTagHelper.cs │ ├── LinkEntry.cs │ ├── LinkTagHelper.cs │ ├── LocalizedEditorTagHelper.cs │ ├── MetaDescriptionTagHelper.cs │ ├── MetaKeywordsTagHelper.cs │ ├── PageNavigationTagHelper.cs │ ├── PictureSourceTagHelper.cs │ ├── RequiredTagHelper.cs │ ├── ResourceManager.cs │ ├── ResourceType.cs │ ├── ResourcesTagHelper.cs │ ├── ScriptLocation.cs │ ├── ScriptTagHelper.cs │ └── TitleTagHelper.cs ├── Themes │ ├── IThemeContext.cs │ ├── IThemeProvider.cs │ ├── ThemeConfiguration.cs │ ├── ThemeContext.cs │ ├── ThemeProvider.cs │ └── ThemeViewLocationExpander.cs └── WorkContext.cs └── Grand.Web ├── App_Data ├── DataProtectionKeys │ └── Index.htm ├── Download │ └── Index.htm ├── GeoLite2-Country.mmdb ├── Resources │ ├── DefaultLanguage.xml │ ├── Installation │ │ ├── installation.en.xml │ │ └── installation.pl.xml │ └── supportedcollation.xml ├── TempUploads │ └── Index.htm ├── UrlRewrite.xml └── appsettings.json ├── Commands ├── Handler │ ├── Blogs │ │ └── InsertBlogCommentCommandHandler.cs │ ├── Common │ │ ├── ContactAttributeChangeCommandHandler.cs │ │ ├── ContactUsCommandHandler.cs │ │ ├── ContactUsSendCommandHandler.cs │ │ └── PopupInteractiveCommandHandler.cs │ ├── Courses │ │ └── CourseLessonApprovedCommandHandler.cs │ ├── Customers │ │ ├── CurrentPositionCommandHandler.cs │ │ ├── CustomerRegisteredCommandHandler.cs │ │ ├── DeleteAccountCommandHandler.cs │ │ ├── PasswordRecoverySendCommandHandler.cs │ │ ├── SubAccountAddCommandHandler.cs │ │ ├── SubAccountDeleteCommandHandler.cs │ │ ├── SubAccountEditCommandHandler.cs │ │ └── UpdateCustomerInfoCommandHandler.cs │ ├── News │ │ └── InsertNewsCommentCommandHandler.cs │ ├── Newsletter │ │ ├── SubscribeNewsletterHandler.cs │ │ ├── SubscriptionActivationHandler.cs │ │ └── SubscriptionCategoryHandler.cs │ ├── Orders │ │ ├── InsertOrderNoteCommandHandler.cs │ │ └── MerchandiseReturnSubmitCommandHandler.cs │ ├── Products │ │ ├── InsertProductReviewCommandHandler.cs │ │ ├── SendProductAskQuestionMessageCommandHandler.cs │ │ └── SendProductEmailAFriendMessageCommandHandler.cs │ ├── ShoppingCart │ │ └── SaveCheckoutAttributesCommandHandler.cs │ └── Vendors │ │ ├── ContactVendorCommandHandler.cs │ │ ├── InsertVendorReviewCommandHandler.cs │ │ └── SetVendorReviewHelpfulnessCommandHandler.cs └── Models │ ├── Blogs │ └── InsertBlogCommentCommand.cs │ ├── Common │ ├── ContactAttributeChangeCommand.cs │ ├── ContactUsCommand.cs │ ├── ContactUsSendCommand.cs │ └── PopupInteractiveCommand.cs │ ├── Courses │ └── CourseLessonApprovedCommand.cs │ ├── Customers │ ├── CurrentPositionCommand.cs │ ├── CustomerRegisteredCommand.cs │ ├── DeleteAccountCommand.cs │ ├── PasswordRecoverySendCommand.cs │ ├── SubAccountAddCommand.cs │ ├── SubAccountDeleteCommand.cs │ ├── SubAccountEditCommand.cs │ └── UpdateCustomerInfoCommand.cs │ ├── News │ └── InsertNewsCommentCommand.cs │ ├── Newsletter │ ├── SubscribeNewsletterCommand.cs │ ├── SubscriptionActivationCommand.cs │ └── SubscriptionCategoryCommand.cs │ ├── Orders │ ├── InsertOrderNoteCommand.cs │ └── MerchandiseReturnSubmitCommand.cs │ ├── Products │ ├── InsertProductReviewCommand.cs │ ├── SendProductAskQuestionMessageCommand.cs │ └── SendProductEmailAFriendMessageCommand.cs │ ├── ShoppingCart │ └── SaveCheckoutAttributesCommand.cs │ └── Vendors │ ├── ContactVendorSendCommand.cs │ ├── InsertVendorReviewCommand.cs │ └── SetVendorReviewHelpfulnessCommand.cs ├── Components ├── BlogCategories.cs ├── BlogMonths.cs ├── BlogPostProducts.cs ├── BlogTags.cs ├── CategoryFeaturedProducts.cs ├── CategoryNavigation.cs ├── CollectionFeaturedProducts.cs ├── CollectionNavigation.cs ├── CrossSellProducts.cs ├── CustomerNavigation.cs ├── CustomerRecommendedProducts.cs ├── EstimateShipping.cs ├── ExternalMethods.cs ├── Footer.cs ├── GetCoordinate.cs ├── HomePageBestSellers.cs ├── HomePageBlog.cs ├── HomePageBrands.cs ├── HomePageCategories.cs ├── HomePageCollections.cs ├── HomePageNewProducts.cs ├── HomePageNews.cs ├── HomePageProducts.cs ├── InteractiveForm.cs ├── KnowledgebaseCategories.cs ├── KnowledgebaseHomepageArticles.cs ├── Menu.cs ├── OrderSummary.cs ├── OrderTotals.cs ├── PageBlock.cs ├── Partial.cs ├── PersonalizedProducts.cs ├── PopularProductTags.cs ├── PopupAction.cs ├── ProductReviews.cs ├── ProductsAlsoPurchased.cs ├── PushNotificationsRegistration.cs ├── RecentlyViewedProductsBlock.cs ├── RecommendedProducts.cs ├── RelatedProducts.cs ├── SearchBox.cs ├── SidebarShoppingCart.cs ├── SimilarProducts.cs ├── SuggestedProducts.cs ├── VendorNavigation.cs └── Widget.cs ├── Controllers ├── AccountController.cs ├── ActionCartController.cs ├── BasePublicController.cs ├── BlogController.cs ├── CatalogController.cs ├── CheckoutController.cs ├── CommonController.cs ├── ComponentController.cs ├── CountryController.cs ├── CourseController.cs ├── DownloadController.cs ├── HomeController.cs ├── InstallController.cs ├── KnowledgebaseController.cs ├── LetsEncryptController.cs ├── MerchandiseReturnController.cs ├── NewsController.cs ├── NewsletterController.cs ├── OrderController.cs ├── OutOfStockSubscriptionController.cs ├── PageController.cs ├── PixelController.cs ├── ProductController.cs ├── PushNotificationsController.cs ├── ShoppingCartController.cs ├── VendorController.cs └── WishlistController.cs ├── Endpoints ├── EndpointProvider.cs └── SlugEndpointProvider.cs ├── Events ├── BlogCommentEvent.cs ├── Cache │ ├── BlogCategoryNotificatioHandler.cs │ ├── BlogPostNotificatioHandler.cs │ ├── CacheKeyConst.cs │ ├── NewsItemNotificatioHandler.cs │ └── VendorNotificatioHandler.cs ├── ContactUsEvent.cs ├── CustomerInfoEvent.cs ├── NewsCommentEvent.cs ├── OrderNoteEvent.cs ├── PopupInteractiveEvent.cs ├── PopupRenderEvent.cs └── ProductReviewEvent.cs ├── Extensions ├── MappingExtensions.cs ├── OrderExtensions.cs └── PageSeNameConstants.cs ├── Features ├── Handlers │ ├── Blogs │ │ ├── GetBlogPostCategoryHandler.cs │ │ ├── GetBlogPostHandler.cs │ │ ├── GetBlogPostListHandler.cs │ │ ├── GetBlogPostTagListHandler.cs │ │ ├── GetBlogPostYearHandler.cs │ │ └── GetHomePageBlogHandler.cs │ ├── Catalog │ │ ├── GetBrandAllHandler.cs │ │ ├── GetBrandHandler.cs │ │ ├── GetBrandLayoutViewPathHandler.cs │ │ ├── GetCategoryFeaturedProductsHandler.cs │ │ ├── GetCategoryHandler.cs │ │ ├── GetCategoryLayoutViewPathHandler.cs │ │ ├── GetCategoryNavigationHandler.cs │ │ ├── GetCategorySimpleHandler.cs │ │ ├── GetChildCategoryIdsHandler.cs │ │ ├── GetCollectionAllHandler.cs │ │ ├── GetCollectionFeaturedProductsHandler.cs │ │ ├── GetCollectionHandler.cs │ │ ├── GetCollectionLayoutViewPathHandler.cs │ │ ├── GetCollectionNavigationHandler.cs │ │ ├── GetFormatBasePriceHandler.cs │ │ ├── GetHomepageBrandsHandler.cs │ │ ├── GetHomepageCategoryHandler.cs │ │ ├── GetHomepageCollectionsHandler.cs │ │ ├── GetMenuHandler.cs │ │ ├── GetPopularProductTagsHandler.cs │ │ ├── GetProductAttributeHandler.cs │ │ ├── GetProductTagsAllHandler.cs │ │ ├── GetProductsByTagHandler.cs │ │ ├── GetSearchAutoCompleteHandler.cs │ │ ├── GetSearchBoxHandler.cs │ │ ├── GetSearchHandler.cs │ │ ├── GetSortingOptionsHandler.cs │ │ ├── GetVendorAllHandler.cs │ │ ├── GetVendorHandler.cs │ │ └── GetVendorNavigationHandler.cs │ ├── Checkout │ │ ├── GetBillingAddressHandler.cs │ │ ├── GetConfirmOrderHandler.cs │ │ ├── GetIsPaymentWorkflowRequiredHandler.cs │ │ ├── GetMinOrderPlaceIntervalValidHandler.cs │ │ ├── GetPaymentInfoHandler.cs │ │ ├── GetPaymentMethodHandler.cs │ │ ├── GetShippingAddressHandler.cs │ │ └── GetShippingMethodHandler.cs │ ├── Common │ │ ├── GetAddressModelHandler.cs │ │ ├── GetParseCustomAddressAttributesHandler.cs │ │ ├── GetPrivacyPreferenceModelHandler.cs │ │ ├── GetRobotsTextFileHandler.cs │ │ ├── GetSitemapHandler.cs │ │ ├── GetStatesProvinceHandler.cs │ │ └── GetVendorAddressHandler.cs │ ├── Courses │ │ ├── GetCheckOrderHandler.cs │ │ ├── GetCourseHandler.cs │ │ └── GetLessonHandler.cs │ ├── Customers │ │ ├── GetAddressListHandler.cs │ │ ├── GetAuctionsHandler.cs │ │ ├── GetCoursesHandler.cs │ │ ├── GetCustomAttributesHandler.cs │ │ ├── GetDocumentsHandler.cs │ │ ├── GetDownloadableProductsHandler.cs │ │ ├── GetInfoHandler.cs │ │ ├── GetNavigationHandler.cs │ │ ├── GetNotesHandler.cs │ │ ├── GetParseCustomAttributesHandler.cs │ │ ├── GetPasswordRecoveryConfirmHandler.cs │ │ ├── GetRegisterHandler.cs │ │ ├── GetReviewsHandler.cs │ │ ├── GetSubAccountHandler.cs │ │ ├── GetSubAccountsHandler.cs │ │ ├── GetTwoFactorAuthenticationHandler.cs │ │ └── GetUserAgreementHandler.cs │ ├── Messages │ │ └── GetInteractiveFormHandler.cs │ ├── News │ │ ├── GetHomePageNewsItemsHandler.cs │ │ ├── GetNewsItemHandler.cs │ │ └── GetNewsItemListHandler.cs │ ├── Orders │ │ ├── GetCustomerLoyaltyPointsHandler.cs │ │ ├── GetCustomerOrderListHandler.cs │ │ ├── GetMerchandiseReturnDetailsHandler.cs │ │ ├── GetMerchandiseReturnHandler.cs │ │ ├── GetMerchandiseReturnsHandler.cs │ │ ├── GetOrderDetailsHandler.cs │ │ └── GetShipmentDetailsHandler.cs │ ├── Pages │ │ ├── GetPageBlockHandler.cs │ │ └── GetPageLayoutViewPathHandler.cs │ ├── Products │ │ ├── GetProductAskQuestionHandler.cs │ │ ├── GetProductDetailsAttributeChangeHandler.cs │ │ ├── GetProductDetailsPageHandler.cs │ │ ├── GetProductLayoutViewPathHandler.cs │ │ ├── GetProductOverviewHandler.cs │ │ ├── GetProductReviewOverviewHandler.cs │ │ ├── GetProductReviewsHandler.cs │ │ └── GetProductSpecificationHandler.cs │ ├── ShoppingCart │ │ ├── GetAddToCartHandler.cs │ │ ├── GetEstimateShippingHandler.cs │ │ ├── GetEstimateShippingResultHandler.cs │ │ ├── GetMiniShoppingCartHandler.cs │ │ ├── GetOrderTotalsHandler.cs │ │ ├── GetParseProductAttributesHandler.cs │ │ ├── GetShoppingCartHandler.cs │ │ └── GetWishlistHandler.cs │ └── Vendors │ │ └── GetVendorReviewsHandler.cs └── Models │ ├── Blogs │ ├── GetBlogPost.cs │ ├── GetBlogPostCategory.cs │ ├── GetBlogPostList.cs │ ├── GetBlogPostTagList.cs │ ├── GetBlogPostYear.cs │ └── GetHomePageBlog.cs │ ├── Catalog │ ├── GetBrand.cs │ ├── GetBrandAll.cs │ ├── GetBrandLayoutViewPath.cs │ ├── GetCategory.cs │ ├── GetCategoryFeaturedProducts.cs │ ├── GetCategoryLayoutViewPath.cs │ ├── GetCategoryNavigation.cs │ ├── GetCategorySimple.cs │ ├── GetChildCategoryIds.cs │ ├── GetCollection.cs │ ├── GetCollectionAll.cs │ ├── GetCollectionFeaturedProducts.cs │ ├── GetCollectionLayoutViewPath.cs │ ├── GetCollectionNavigation.cs │ ├── GetFormatBasePrice.cs │ ├── GetHomepageBrands.cs │ ├── GetHomepageCategory.cs │ ├── GetHomepageCollections.cs │ ├── GetMenu.cs │ ├── GetPopularProductTags.cs │ ├── GetProductAttribute.cs │ ├── GetProductTagsAll.cs │ ├── GetProductsByTag.cs │ ├── GetSearch.cs │ ├── GetSearchAutoComplete.cs │ ├── GetSearchBox.cs │ ├── GetVendor.cs │ ├── GetVendorAll.cs │ ├── GetVendorNavigation.cs │ └── GetViewSortSizeOptions.cs │ ├── Checkout │ ├── GetBillingAddress.cs │ ├── GetConfirmOrder.cs │ ├── GetIsPaymentWorkflowRequired.cs │ ├── GetMinOrderPlaceIntervalValid.cs │ ├── GetPaymentInfo.cs │ ├── GetPaymentMethod.cs │ ├── GetShippingAddress.cs │ └── GetShippingMethod.cs │ ├── Common │ ├── GetAddressModel.cs │ ├── GetParseCustomAddressAttributes.cs │ ├── GetPrivacyPreference.cs │ ├── GetRobotsTextFile.cs │ ├── GetSitemap.cs │ ├── GetStatesProvince.cs │ └── GetVendorAddress.cs │ ├── Courses │ ├── GetCheckOrder.cs │ ├── GetCourse.cs │ └── GetLesson.cs │ ├── Customers │ ├── GetAddressList.cs │ ├── GetAuctions.cs │ ├── GetCourses.cs │ ├── GetCustomAttributes.cs │ ├── GetDocuments.cs │ ├── GetDownloadableProducts.cs │ ├── GetInfo.cs │ ├── GetNavigation.cs │ ├── GetNotes.cs │ ├── GetParseCustomAttributes.cs │ ├── GetPasswordRecoveryConfirm.cs │ ├── GetRegister.cs │ ├── GetReviews.cs │ ├── GetSubAccount.cs │ ├── GetSubAccounts.cs │ ├── GetTwoFactorAuthentication.cs │ └── GetUserAgreement.cs │ ├── Messages │ └── GetInteractiveForm.cs │ ├── News │ ├── GetHomePageNewsItems.cs │ ├── GetNewsItem.cs │ └── GetNewsItemList.cs │ ├── Orders │ ├── GetCustomerLoyaltyPoints.cs │ ├── GetCustomerOrderList.cs │ ├── GetMerchandiseReturn.cs │ ├── GetMerchandiseReturnDetails.cs │ ├── GetMerchandiseReturns.cs │ ├── GetOrderDetails.cs │ └── GetShipmentDetails.cs │ ├── Pages │ ├── GetPageBlock.cs │ └── GetPageLayoutViewPath.cs │ ├── Products │ ├── GetProductAskQuestion.cs │ ├── GetProductDetailsAttributeChange.cs │ ├── GetProductDetailsPage.cs │ ├── GetProductLayoutViewPath.cs │ ├── GetProductOverview.cs │ ├── GetProductReviewOverview.cs │ ├── GetProductReviews.cs │ └── GetProductSpecification.cs │ ├── ShoppingCart │ ├── GetAddToCart.cs │ ├── GetEstimateShipping.cs │ ├── GetEstimateShippingResult.cs │ ├── GetMiniShoppingCart.cs │ ├── GetOrderTotals.cs │ ├── GetParseProductAttributes.cs │ ├── GetShoppingCart.cs │ └── GetWishlist.cs │ └── Vendors │ └── GetVendorReviews.cs ├── Grand.Web.csproj ├── Models ├── Blogs │ ├── AddBlogCommentModel.cs │ ├── BlogCommentModel.cs │ ├── BlogPagingFilteringModel.cs │ ├── BlogPostCategoryModel.cs │ ├── BlogPostListModel.cs │ ├── BlogPostModel.cs │ ├── BlogPostTagListModel.cs │ ├── BlogPostTagModel.cs │ ├── BlogPostYearMonthModel.cs │ └── HomePageBlogItemsModel.cs ├── Catalog │ ├── BrandModel.cs │ ├── CatalogPagingFilteringModel.cs │ ├── CategoryModel.cs │ ├── CategoryNavigationModel.cs │ ├── CategorySimpleModel.cs │ ├── CollectionModel.cs │ ├── CollectionNavigationModel.cs │ ├── CompareProductsModel.cs │ ├── CustomerOutOfStockSubscriptionsModel.cs │ ├── MenuModel.cs │ ├── OutOfStockSubscribeModel.cs │ ├── PopularProductTagsModel.cs │ ├── ProductAskQuestionModel.cs │ ├── ProductAskQuestionSimpleModel.cs │ ├── ProductDetailsAttributeChangeModel.cs │ ├── ProductDetailsModel.cs │ ├── ProductEmailAFriendModel.cs │ ├── ProductOverviewModel.cs │ ├── ProductReviewModel.cs │ ├── ProductSpecificationModel.cs │ ├── ProductTagModel.cs │ ├── ProductsByTagModel.cs │ ├── SearchAutoCompleteModel.cs │ ├── SearchBoxModel.cs │ ├── SearchModel.cs │ ├── VendorModel.cs │ └── VendorNavigationModel.cs ├── Checkout │ ├── CheckoutBillingAddressModel.cs │ ├── CheckoutCompletedModel.cs │ ├── CheckoutConfirmModel.cs │ ├── CheckoutModel.cs │ ├── CheckoutPaymentInfoModel.cs │ ├── CheckoutPaymentMethodModel.cs │ ├── CheckoutPickupPointModel.cs │ ├── CheckoutShippingAddressModel.cs │ ├── CheckoutShippingMethodModel.cs │ └── UpdateSectionJsonModel.cs ├── Cms │ └── WidgetModel.cs ├── Common │ ├── AddressAttributeModel.cs │ ├── AddressModel.cs │ ├── ContactUsModel.cs │ ├── ContactVendorModel.cs │ ├── CurrencyModel.cs │ ├── FooterModel.cs │ ├── LanguageModel.cs │ ├── LocationModel.cs │ ├── Logo.cs │ ├── PagerModel.cs │ ├── PopupModel.cs │ ├── PrivacyPreferenceModel.cs │ ├── ShoppingCartLinksModel.cs │ ├── SitemapModel.cs │ ├── StateProvinceModel.cs │ ├── StoreModel.cs │ └── StoreThemeModel.cs ├── Course │ ├── CourseModel.cs │ └── LessonModel.cs ├── Customer │ ├── AccountActivationModel.cs │ ├── ChangePasswordModel.cs │ ├── CoursesModel.cs │ ├── CustomerAddressEditModel.cs │ ├── CustomerAddressListModel.cs │ ├── CustomerAttributeModel.cs │ ├── CustomerAuctionsModel.cs │ ├── CustomerDownloadableProductsModel.cs │ ├── CustomerInfoModel.cs │ ├── CustomerNavigationModel.cs │ ├── CustomerNotesModel.cs │ ├── CustomerProductReviewModel.cs │ ├── DeleteAccountModel.cs │ ├── DocumentPagingModel.cs │ ├── DocumentsModel.cs │ ├── ExternalAuthenticationMethodModel.cs │ ├── LoginModel.cs │ ├── PasswordRecoveryConfirmModel.cs │ ├── PaswordRecoveryModel.cs │ ├── RegisterModel.cs │ ├── RegisterResultModel.cs │ ├── SubAccountModel.cs │ └── SubAccountSimpleModel.cs ├── Install │ └── InstallModel.cs ├── Knowledgebase │ ├── AddKnowledgebaseArticleCommentModel.cs │ ├── KnowledgebaseArticleCommentModel.cs │ ├── KnowledgebaseArticleModel.cs │ ├── KnowledgebaseCategoryModel.cs │ ├── KnowledgebaseHomePageModel.cs │ └── KnowledgebaseItemModel.cs ├── Media │ └── PictureModel.cs ├── Messages │ └── InteractiveFormModel.cs ├── News │ ├── AddNewsCommentModel.cs │ ├── HomePageNewsItemsModel.cs │ ├── NewsCommentModel.cs │ ├── NewsItemListModel.cs │ ├── NewsItemModel.cs │ └── NewsPagingFilteringModel.cs ├── Newsletter │ ├── NewsletterCategoryModel.cs │ ├── SubscribeNewsletterResultModel.cs │ └── SubscriptionActivationModel.cs ├── Orders │ ├── AddOrderNoteModel.cs │ ├── CustomerLoyaltyPointsModel.cs │ ├── CustomerMerchandiseReturnsModel.cs │ ├── CustomerOrderListModel.cs │ ├── MerchandiseReturnDetailsModel.cs │ ├── MerchandiseReturnModel.cs │ ├── OrderDetailsModel.cs │ ├── OrderPagingModel.cs │ └── ShipmentDetailsModel.cs ├── Pages │ └── PageModel.cs ├── PushNotifications │ └── PublicInfoModel.cs ├── ShoppingCart │ ├── AddToCartModel.cs │ ├── EstimateShippingModel.cs │ ├── MiniShoppingCartModel.cs │ ├── OrderTotalsModel.cs │ ├── ShoppingCartModel.cs │ ├── WishlistEmailAFriendModel.cs │ └── WishlistModel.cs ├── Upgrade │ └── UpgradeModel.cs └── Vendors │ ├── ApplyVendorModel.cs │ ├── VendorAddressModel.cs │ ├── VendorInfoModel.cs │ └── VendorReviewOverviewModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Roslyn ├── Index.htm ├── NotificationHandler.csx ├── UseForwardedHeaders.csx └── ZipCodeValidation.csx ├── Rotativa ├── Linux │ └── wkhtmltopdf ├── Mac │ └── wkhtmltopdf └── Windows │ └── wkhtmltopdf.exe ├── Startup.cs ├── Themes └── Default │ ├── Views │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── preview.jpg │ └── theme.cfg ├── Validators ├── Blogs │ └── BlogPostValidator.cs ├── Catalog │ ├── ProductAskQuestionSimpleValidator.cs │ ├── ProductAskQuestionValidator.cs │ ├── ProductEmailAFriendValidator.cs │ └── ProductReviewsValidator.cs ├── Common │ ├── AddressValidator.cs │ ├── ContactUsValidator.cs │ └── ContactVendorValidator.cs ├── Customer │ ├── AddOrderNoteValidator.cs │ ├── ChangePasswordValidator.cs │ ├── CheckoutBillingAddressValidator.cs │ ├── CheckoutShippingAddressValidator.cs │ ├── CustomerAddressEditValidator.cs │ ├── CustomerInfoValidator.cs │ ├── DeleteAccountValidator.cs │ ├── LoginValidator.cs │ ├── PasswordRecoveryConfirmValidator.cs │ ├── PasswordRecoveryValidator.cs │ ├── RegisterValidator.cs │ └── SubAccountValidator.cs ├── Install │ └── InstallValidator.cs ├── Knowledgebase │ └── KnowledgebaseArticleValidator.cs ├── News │ └── NewsItemValidator.cs ├── ShoppingCart │ └── WishlistEmailAFriendValidator.cs └── Vendors │ ├── ApplyVendorValidator.cs │ ├── VendorAddressValidator.cs │ ├── VendorInfoValidator.cs │ └── VendorReviewsValidator.cs ├── Views ├── Account │ ├── AccountActivation.cshtml │ ├── AddressAdd.cshtml │ ├── AddressEdit.cshtml │ ├── Addresses.cshtml │ ├── Auctions.cshtml │ ├── ChangePassword.cshtml │ ├── Courses.cshtml │ ├── DeleteAccount.cshtml │ ├── DisableTwoFactorAuthenticator.cshtml │ ├── Documents.cshtml │ ├── DownloadableProducts.cshtml │ ├── EnableTwoFactorAuthenticator.cshtml │ ├── Info.cshtml │ ├── Login.cshtml │ ├── Notes.cshtml │ ├── PasswordRecovery.cshtml │ ├── PasswordRecoveryConfirm.cshtml │ ├── Register.cshtml │ ├── RegisterResult.cshtml │ ├── Reviews.cshtml │ ├── SubAccountAdd.cshtml │ ├── SubAccountEdit.cshtml │ ├── SubAccounts.cshtml │ ├── TwoFactorAuthorization.cshtml │ ├── UserAgreement.cshtml │ ├── _CheckUsernameAvailability.cshtml │ ├── _CustomerAttributes.cshtml │ └── _NewsLetterCategories.cshtml ├── Blog │ ├── BlogPost.cshtml │ ├── Components │ │ ├── BlogCategories │ │ │ └── Default.cshtml │ │ ├── BlogMonths │ │ │ └── Default.cshtml │ │ └── BlogTags │ │ │ └── Default.cshtml │ └── List.cshtml ├── Catalog │ ├── BrandAll.cshtml │ ├── BrandLayout.GridOrLines.cshtml │ ├── CategoryLayout.GridOrLines.cshtml │ ├── CollectionAll.cshtml │ ├── CollectionLayout.GridOrLines.cshtml │ ├── ProductTagsAll.cshtml │ ├── ProductsByTag.cshtml │ ├── Search.cshtml │ ├── Vendor.cshtml │ ├── VendorAll.cshtml │ ├── VendorReviews.cshtml │ ├── _Filtering.cshtml │ ├── _ModelScript.cshtml │ ├── _Pagination.cshtml │ ├── _Selectors.cshtml │ ├── _VendorReviewHelpfulness.cshtml │ └── _VendorReviewOverview.cshtml ├── Checkout │ ├── Completed.cshtml │ ├── Start.cshtml │ ├── _BillingAddress.cshtml │ ├── _BillingWithoutShipping.cshtml │ ├── _ConfirmOrder.cshtml │ ├── _PaymentInfo.cshtml │ ├── _PaymentMethods.cshtml │ ├── _ReviewData.cshtml │ ├── _ShippingAddress.cshtml │ ├── _ShippingAddressPickupInStore.cshtml │ ├── _ShippingMethods.cshtml │ └── _Summary.cshtml ├── Common │ ├── AccessDenied.cshtml │ ├── ContactUs.cshtml │ ├── ExternalAuthenticationError.cshtml │ ├── PageNotFound.cshtml │ ├── PrivacyPreference.cshtml │ ├── Sitemap.cshtml │ └── StoreClosed.cshtml ├── Course │ ├── Details.cshtml │ └── Lesson.cshtml ├── Home │ └── Index.cshtml ├── Install │ └── Index.cshtml ├── Knowledgebase │ ├── Article.cshtml │ ├── Components │ │ ├── KnowledgebaseCategories │ │ │ └── Default.cshtml │ │ └── KnowledgebaseHomepageArticles │ │ │ └── Default.cshtml │ ├── List.cshtml │ └── _KnowledgebaseCategoryLine.Navigation.cshtml ├── MerchandiseReturn │ ├── CustomerMerchandiseReturns.cshtml │ ├── MerchandiseReturn.cshtml │ └── MerchandiseReturnDetails.cshtml ├── News │ ├── List.cshtml │ └── NewsItem.cshtml ├── Newsletter │ ├── NewsletterCategory.cshtml │ └── SubscriptionActivation.cshtml ├── Order │ ├── AddOrderNote.cshtml │ ├── CustomerLoyaltyPoints.cshtml │ ├── CustomerOrders.cshtml │ ├── Details.cshtml │ └── ShipmentDetails.cshtml ├── OutOfStockSubscription │ ├── CustomerSubscriptions.cshtml │ └── SubscribePopup.cshtml ├── Page │ └── PageDetails.cshtml ├── PdfTemplates │ ├── OrderPdfTemplate.cshtml │ └── ShipmentPdfTemplate.cshtml ├── Product │ ├── AskQuestion.cshtml │ ├── CompareProducts.cshtml │ ├── Components │ │ └── ProductReviews │ │ │ └── Default.cshtml │ ├── NewProducts.cshtml │ ├── ProductEmailAFriend.cshtml │ ├── ProductLayout.Grouped.cshtml │ ├── ProductLayout.Simple.cshtml │ ├── ProductReviews.cshtml │ ├── RecentlyViewedProducts.cshtml │ ├── _AddToCart.cshtml │ ├── _AddToWishlist.cshtml │ ├── _AskQuestionOnProduct.cshtml │ ├── _AuctionInfo.cshtml │ ├── _Availability.cshtml │ ├── _Breadcrumbs.cshtml │ ├── _Codes.cshtml │ ├── _Collections.cshtml │ ├── _DeliveryInfo.cshtml │ ├── _DownloadSample.cshtml │ ├── _GiftVoucherInfo.cshtml │ ├── _OutOfStockSubscription.cshtml │ ├── _Pictures.cshtml │ ├── _PicturesQuickView.cshtml │ ├── _Prices.cshtml │ ├── _ProductAskQuestionButton.cshtml │ ├── _ProductAttributes.cshtml │ ├── _ProductAttributesBundle.cshtml │ ├── _ProductBundles.cshtml │ ├── _ProductReviewHelpfulness.cshtml │ ├── _ProductReviewOverview.cshtml │ ├── _ProductSpecifications.cshtml │ ├── _ProductTags.cshtml │ ├── _ProductsComparison.cshtml │ ├── _ReservationInfo.cshtml │ ├── _SendFriend.cshtml │ ├── _ShareButton.cshtml │ ├── _TierPrices.cshtml │ ├── _Unavailable.cshtml │ └── _Warehouses.cshtml ├── Shared │ ├── Components │ │ ├── BlogPostProducts │ │ │ └── Default.cshtml │ │ ├── CategoryFeaturedProducts │ │ │ └── Default.cshtml │ │ ├── CategoryNavigation │ │ │ └── Default.cshtml │ │ ├── CollectionFeaturedProducts │ │ │ └── Default.cshtml │ │ ├── CollectionNavigation │ │ │ └── Default.cshtml │ │ ├── CrossSellProducts │ │ │ └── Default.cshtml │ │ ├── CustomerNavigation │ │ │ └── Default.cshtml │ │ ├── CustomerRecommendedProducts │ │ │ └── Default.cshtml │ │ ├── EstimateShipping │ │ │ └── Default.cshtml │ │ ├── ExternalMethods │ │ │ └── Default.cshtml │ │ ├── Footer │ │ │ └── Default.cshtml │ │ ├── GetCoordinate │ │ │ └── Default.cshtml │ │ ├── HomePageBestSellers │ │ │ └── Default.cshtml │ │ ├── HomePageBlog │ │ │ └── Default.cshtml │ │ ├── HomePageBrands │ │ │ └── Default.cshtml │ │ ├── HomePageCategories │ │ │ └── Default.cshtml │ │ ├── HomePageCollections │ │ │ └── Default.cshtml │ │ ├── HomePageNewProducts │ │ │ └── Default.cshtml │ │ ├── HomePageNews │ │ │ └── Default.cshtml │ │ ├── HomePageProducts │ │ │ └── Default.cshtml │ │ ├── InteractiveForm │ │ │ └── Default.cshtml │ │ ├── Menu │ │ │ └── Default.cshtml │ │ ├── PageBlock │ │ │ └── Default.cshtml │ │ ├── PagesBlock │ │ │ └── Default.cshtml │ │ ├── PersonalizedProducts │ │ │ └── Default.cshtml │ │ ├── PopularProductTags │ │ │ └── Default.cshtml │ │ ├── PopupAction │ │ │ └── Default.cshtml │ │ ├── ProductsAlsoPurchased │ │ │ └── Default.cshtml │ │ ├── PushNotificationsRegistration │ │ │ └── Default.cshtml │ │ ├── RecentlyViewedProductsBlock │ │ │ └── Default.cshtml │ │ ├── RecommendedProducts │ │ │ └── Default.cshtml │ │ ├── RelatedProducts │ │ │ └── Default.cshtml │ │ ├── SearchBox │ │ │ └── Default.cshtml │ │ ├── SimilarProducts │ │ │ └── Default.cshtml │ │ ├── SuggestedProducts │ │ │ └── Default.cshtml │ │ ├── VendorNavigation │ │ │ └── Default.cshtml │ │ └── Widget │ │ │ └── Default.cshtml │ ├── Error.cshtml │ ├── Head.cshtml │ ├── Header.cshtml │ ├── OrderTotals.cshtml │ ├── SidebarShoppingCart.cshtml │ ├── SidebarWishlist.cshtml │ ├── _AddToCartGroupQV.cshtml │ ├── _AddToCartQV.cshtml │ ├── _AddToWishlistQV.cshtml │ ├── _AddressAttributes.cshtml │ ├── _AttributesQV.cshtml │ ├── _AuctionInfoQV.cshtml │ ├── _CatalogProductListView.cshtml │ ├── _CatalogProductListViewVue.cshtml │ ├── _CatalogProductView.cshtml │ ├── _CatalogProductViewVue.cshtml │ ├── _CategoryLine.Menu.cshtml │ ├── _CategoryLine.Navigation.cshtml │ ├── _CheckoutAttributes.cshtml │ ├── _ContactAttributes.cshtml │ ├── _Cookie.cshtml │ ├── _CreateOrUpdateAddress.cshtml │ ├── _CreateOrUpdateSubAccount.cshtml │ ├── _CreateOrUpdateVendorAddress.cshtml │ ├── _DatePickerDropDowns.cshtml │ ├── _DiscountBox.cshtml │ ├── _Favicons.cshtml │ ├── _GiftVoucherBox.cshtml │ ├── _GiftVoucherInfoQV.cshtml │ ├── _HeaderLinks.cshtml │ ├── _Layout.cshtml │ ├── _LayoutPopup.cshtml │ ├── _LinkedProducts.cshtml │ ├── _Logo.cshtml │ ├── _NewsletterBox.cshtml │ ├── _Notifications.cshtml │ ├── _PopupAddToCart.cshtml │ ├── _PricesGroupQV.cshtml │ ├── _PricesQV.cshtml │ ├── _Print.cshtml │ ├── _ProductBundlesQV.cshtml │ ├── _ProductLayout.QuickViewVue.cshtml │ ├── _ProductsComparisonQV.cshtml │ ├── _ReservationInfoQV.cshtml │ ├── _Selector_Currency.cshtml │ ├── _Selector_Language.cshtml │ ├── _Selector_Store.cshtml │ ├── _Selector_TaxType.cshtml │ ├── _Selector_Theme.cshtml │ ├── _SendFriendQV.cshtml │ ├── _ShoppingCartLinks.cshtml │ ├── _SingleColumn.cshtml │ ├── _TwoColumns.cshtml │ └── _WarehousesQV.cshtml ├── ShoppingCart │ ├── Cart.cshtml │ ├── CartSummary.cshtml │ └── _EstimateShippingResult.cshtml ├── Vendor │ ├── ApplyVendor.cshtml │ ├── ContactVendor.cshtml │ └── Info.cshtml ├── Wishlist │ ├── EmailWishlist.cshtml │ └── Index.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── bundleconfig.json ├── logs └── stdout │ └── Index.htm └── wwwroot ├── assets ├── acme │ └── Index.htm ├── custom │ ├── script.js │ └── style.css ├── errorpage │ └── error.css ├── files │ ├── Index.htm │ └── exportimport │ │ └── Index.htm ├── images │ ├── flags │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── an.png │ │ ├── ao.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── catalonia.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cs.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── england.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── europeanunion.png │ │ ├── fam.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── scotland.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── um.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wales.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ ├── icons │ │ ├── 144x144.png │ │ ├── 192x192.png │ │ └── 512x512.png │ ├── no-image.png │ ├── thumbs │ │ └── placeholder.txt │ └── uploaded │ │ └── placeholder.txt ├── install │ ├── images │ │ └── logo.png │ ├── install.js │ └── style.css └── samples │ ├── brand_adidas.jpg │ ├── brand_dell.jpg │ ├── brand_xiaomi.jpg │ ├── category_accessories.jpg │ ├── category_balls.jpeg │ ├── category_computers.jpeg │ ├── category_digital_downloads.jpeg │ ├── category_display.jpeg │ ├── category_electronics.jpeg │ ├── category_gift_cards.jpeg │ ├── category_lego.jpeg │ ├── category_notebooks.jpg │ ├── category_shoes.jpeg │ ├── category_smartphones.jpeg │ ├── category_smartwatches.jpg │ ├── category_sport.jpeg │ ├── category_tablets.jpg │ ├── product_100giftcart.png │ ├── product_25giftcart.png │ ├── product_50giftcart.png │ ├── product_GTA_1.zip │ ├── product_GTA_2.txt │ ├── product_LegoCity_1.png │ ├── product_LegoCity_2.png │ ├── product_Mi_Smart_Band_3i_1.png │ ├── product_Mi_Smart_Band_3i_2.png │ ├── product_POCO_F2_Pro.png │ ├── product_Redmi_K30.png │ ├── product_Redmi_Note_9_1.png │ ├── product_Redmi_Note_9_2.png │ ├── product_acer_monitor_1.png │ ├── product_acer_monitor_2.png │ ├── product_acer_nitro_1.png │ ├── product_acer_nitro_2.png │ ├── product_acer_projector_1.png │ ├── product_acer_projector_2.png │ ├── product_adidas.png │ ├── product_adidas_2.png │ ├── product_adidas_3.png │ ├── product_adidas_4.png │ ├── product_adidasball.png │ ├── product_adidasturfs.png │ ├── product_asus_mixed_reality_1.png │ ├── product_asus_mixed_reality_2.png │ ├── product_chicago_jersey_1.png │ ├── product_chicago_jersey_2.png │ ├── product_cod_1.png │ ├── product_cod_1.zip │ ├── product_cyberpunk_1.png │ ├── product_cyberpunk_1.zip │ ├── product_cyberpunk_2.txt │ ├── product_dell_g5_1.png │ ├── product_dell_g5_2.png │ ├── product_dell_xps_1.png │ ├── product_dell_xps_2.png │ ├── product_derby_awayshirt_1.png │ ├── product_derby_shirt_1.png │ ├── product_derby_shorts_1.png │ ├── product_desktop_1.png │ ├── product_desktop_2.png │ ├── product_forerunner.png │ ├── product_garmin_fenix_1.png │ ├── product_garmin_fenix_2.png │ ├── product_gta_1.png │ ├── product_kidskit.png │ ├── product_lego_falcon_1.png │ ├── product_lego_falcon_2.png │ ├── product_lego_hogwarts_1.png │ ├── product_lego_hogwarts_2.png │ ├── product_lenovo_ideapad_dual_1.png │ ├── product_lenovo_ideapad_dual_2.png │ ├── product_lenovo_legion_y740_1.png │ ├── product_lenovo_legion_y740_2.png │ ├── product_lenovo_smart_tab_1.png │ ├── product_lenovo_smart_tab_2.png │ ├── product_lenovo_yoga_duet_1.png │ ├── product_lenovo_yoga_duet_2.png │ ├── product_mi_beard_1.png │ ├── product_mi_beard_2.png │ ├── product_mi_notebook_1.png │ ├── product_mi_notebook_2.png │ ├── product_mikasa.png │ ├── product_predator_1.png │ ├── product_ps4_1.png │ ├── product_ps4_2.png │ ├── product_ps5_camera_1.png │ ├── product_ps5_camera_2.png │ ├── product_psg_1.png │ ├── product_psg_2.png │ ├── product_sony_ps5_console_1.png │ ├── product_sony_ps5_console_2.png │ ├── product_sony_ps5_pad_1.png │ ├── product_sony_ps5_pad_2.png │ ├── product_spalding.png │ └── product_vivoactive.png ├── banner.jpg ├── errorpage.htm ├── favicon.ico ├── firebase-messaging-sw.js ├── logo.png ├── manifest.json ├── pdf └── footers │ ├── order.html │ ├── products.html │ └── shipment.html ├── robots.additions.txt └── theme ├── bootstrap-vue ├── bootstrap-vue.min.css ├── bootstrap-vue.min.css.map └── bootstrap.min.css ├── css ├── animate.min.css ├── cart │ ├── cart.css │ └── cart.rtl.css ├── catalog │ ├── catalog.css │ └── catalog.rtl.css ├── common │ ├── common.css │ └── common.rtl.css ├── customer │ ├── customer.css │ └── customer.rtl.css ├── header │ ├── header.css │ └── header.rtl.css ├── pikaday.min.css ├── print.css └── product │ ├── product.css │ └── product.rtl.css ├── images ├── facebook.svg ├── instagram.svg ├── linkedin.svg ├── pinterest.svg ├── rss.svg ├── twitter.svg └── youtube.svg ├── lib ├── axios.min.js ├── bootstrap-vue-icons-slim.js ├── bootstrap-vue-icons-slim.min.js ├── bootstrap-vue-icons.min.js ├── bootstrap-vue-icons.min.js.map ├── bootstrap-vue.min.js ├── bootstrap-vue.min.js.map ├── pikaday.min.js ├── popper.min.js ├── popper.min.js.map ├── portal-vue.umd.min.js ├── vee-validate.minimal.min.js ├── vue-awesome-countdown.umd.min.js ├── vue-gallery-slideshow.min.js └── vue.min.js └── script ├── app.js ├── menu.js ├── product.reviews.js ├── public.autocomplete.js ├── public.axios.js ├── public.checkout.js ├── public.common.js ├── public.reservation.js ├── validation-config.js ├── validation-config.min.js └── vue.push.notifications.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/aspnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/.github/workflows/aspnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/Dockerfile -------------------------------------------------------------------------------- /GrandNode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/GrandNode.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /src/API/Grand.Api/Constants/Configurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Constants/Configurations.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Controllers/BaseODataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Controllers/BaseODataController.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Controllers/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Controllers/TokenController.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Controllers/TokenWebController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Controllers/TokenWebController.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Catalog/BrandDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Catalog/BrandDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Catalog/CategoryDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Catalog/CategoryDTO.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Catalog/CollectionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Catalog/CollectionDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Catalog/ProductCategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Catalog/ProductCategoryDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Catalog/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Catalog/ProductDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Catalog/ProductPictureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Catalog/ProductPictureDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Common/CountryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Common/CountryDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Common/CurrencyDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Common/CurrencyDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Common/LanguageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Common/LanguageDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Common/LayoutDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Common/LayoutDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Common/PictureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Common/PictureDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Common/StateProvinceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Common/StateProvinceDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Common/StoreDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Common/StoreDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Customers/AddressDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Customers/AddressDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Customers/CustomerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Customers/CustomerDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Customers/CustomerGroupDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Customers/CustomerGroupDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Customers/VendorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Customers/VendorDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Shipping/DeliveryDateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Shipping/DeliveryDateDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Shipping/PickupPointDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Shipping/PickupPointDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Shipping/ShippingMethodDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Shipping/ShippingMethodDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/Shipping/WarehouseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/Shipping/WarehouseDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/DTOs/TokenDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/DTOs/TokenDto.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Extensions/MappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Extensions/MappingExtensions.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Grand.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Grand.Api.csproj -------------------------------------------------------------------------------- /src/API/Grand.Api/Infrastructure/EnumSchemaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Infrastructure/EnumSchemaFilter.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Infrastructure/SwaggerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Infrastructure/SwaggerStartup.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Jwt/JwtToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Jwt/JwtToken.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Jwt/JwtTokenBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Jwt/JwtTokenBuilder.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Models/BaseApiEntityModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Models/BaseApiEntityModel.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Models/Common/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Models/Common/LoginModel.cs -------------------------------------------------------------------------------- /src/API/Grand.Api/Queries/Models/Common/GetQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/API/Grand.Api/Queries/Models/Common/GetQuery.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Admin/AdminSearchSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Admin/AdminSearchSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Admin/AdminSiteMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Admin/AdminSiteMap.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Affiliates/Affiliate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Affiliates/Affiliate.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/BaseEntity.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogCategory.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogCategoryPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogCategoryPost.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogComment.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogExtensions.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogPost.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogPostTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogPostTag.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogProduct.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Blogs/BlogSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Blogs/BlogSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/AttributeValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/AttributeValueType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/BackorderMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/BackorderMode.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/Bid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/Bid.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/Brand.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/BrandLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/BrandLayout.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/BundleProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/BundleProduct.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/CatalogSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/CatalogSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/Category.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/CategoryLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/CategoryLayout.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/Collection.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/CollectionLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/CollectionLayout.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/CrossSellProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/CrossSellProduct.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/GiftVoucherType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/GiftVoucherType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/IntervalUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/IntervalUnit.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/InventoryJournal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/InventoryJournal.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/LowStockActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/LowStockActivity.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/Product.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductAttribute.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductCategory.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductCollection.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductDeleted.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductExtensions.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductLayout.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductPicture.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductPrice.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductReservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductReservation.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductReview.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductSortingEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductSortingEnum.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductTag.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/ProductType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/ProductType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/RelatedProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/RelatedProduct.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/SimilarProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/SimilarProduct.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Catalog/TierPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Catalog/TierPrice.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Cms/WidgetSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Cms/WidgetSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/Address.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/AddressAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/AddressAttribute.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/AddressSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/AddressSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/AddressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/AddressType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/AdminAreaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/AdminAreaSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/CommonSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/CommonSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/CustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/CustomAttribute.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/DisplayOrderHomePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/DisplayOrderHomePage.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/GeoCoordinates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/GeoCoordinates.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/GrandNodeVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/GrandNodeVersion.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/MenuItemSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/MenuItemSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/PdfSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/PdfSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/Reference.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/SearchTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/SearchTerm.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/SystemSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/SystemSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/UserField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/UserField.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/UserFieldBaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/UserFieldBaseEntity.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Common/UserFieldExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Common/UserFieldExtensions.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Configuration/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Configuration/ISettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Configuration/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Configuration/Setting.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Courses/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Courses/Course.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Courses/CourseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Courses/CourseAction.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Courses/CourseLesson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Courses/CourseLesson.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Courses/CourseLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Courses/CourseLevel.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Courses/CourseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Courses/CourseSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Courses/CourseSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Courses/CourseSubject.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/Customer.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerAction.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerAttribute.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerGroup.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerNote.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerProduct.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerReminder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerReminder.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/CustomerTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/CustomerTag.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/PasswordFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/PasswordFormat.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/SalesEmployee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/SalesEmployee.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Customers/UserApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Customers/UserApi.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/DataSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/DataSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/DataSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/DataSettingsManager.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/DbProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/DbProvider.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/IDatabaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/IDatabaseContext.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/IRepository.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/Mongo/MongoDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/Mongo/MongoDBContext.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/Mongo/MongoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/Mongo/MongoRepository.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/OrderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/OrderBuilder.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/UniqueIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/UniqueIdentifier.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Data/UpdateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Data/UpdateBuilder.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/Country.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/Currency.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/CurrencySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/CurrencySettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/ExchangeRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/ExchangeRate.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/MeasureDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/MeasureDimension.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/MeasureSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/MeasureSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/MeasureUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/MeasureUnit.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/MeasureWeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/MeasureWeight.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/RoundingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/RoundingType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Directory/StateProvince.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Directory/StateProvince.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Discounts/Discount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Discounts/Discount.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Discounts/DiscountCoupon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Discounts/DiscountCoupon.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Discounts/DiscountRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Discounts/DiscountRule.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Discounts/DiscountType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Discounts/DiscountType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Documents/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Documents/Document.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Documents/DocumentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Documents/DocumentSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Documents/DocumentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Documents/DocumentStatus.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Documents/DocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Documents/DocumentType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Grand.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Grand.Domain.csproj -------------------------------------------------------------------------------- /src/Core/Grand.Domain/History/HistoryObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/History/HistoryObject.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/History/IHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/History/IHistory.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/IPagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/IPagedList.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Knowledgebase/ITreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Knowledgebase/ITreeNode.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Localization/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Localization/Language.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Logging/ActivityLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Logging/ActivityLog.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Logging/ActivityLogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Logging/ActivityLogType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Logging/Log.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Media/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Media/Download.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Media/MediaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Media/MediaSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Media/Picture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Media/Picture.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/Banner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/Banner.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/Campaign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/Campaign.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/CampaignCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/CampaignCondition.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/CampaignHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/CampaignHistory.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/ContactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/ContactAttribute.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/ContactUs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/ContactUs.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/EmailAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/EmailAccount.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/FormControlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/FormControlType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/InteractiveForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/InteractiveForm.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/LiquidObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/LiquidObject.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/MessageDelayPeriod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/MessageDelayPeriod.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/MessageTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/MessageTemplate.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/NewsletterCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/NewsletterCategory.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/PopupActive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/PopupActive.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/PopupArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/PopupArchive.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/PopupType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/PopupType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Messages/QueuedEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Messages/QueuedEmail.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/News/NewsComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/News/NewsComment.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/News/NewsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/News/NewsItem.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/News/NewsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/News/NewsSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/CheckoutAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/CheckoutAttribute.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/GiftVoucher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/GiftVoucher.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/LoyaltyPointsHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/LoyaltyPointsHistory.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/MerchandiseReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/MerchandiseReturn.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/Order.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderItem.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderItemStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderItemStatus.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderNote.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderStatus.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderStatusSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderStatusSystem.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderTag.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/OrderTax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/OrderTax.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/ShoppingCartItem.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/ShoppingCartSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/ShoppingCartSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Orders/ShoppingCartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Orders/ShoppingCartType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/PagedList.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Pages/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Pages/Page.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Pages/PageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Pages/PageLayout.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/ParentEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/ParentEntity.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Payments/PaymentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Payments/PaymentSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Payments/PaymentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Payments/PaymentStatus.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Payments/PaymentTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Payments/PaymentTransaction.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Payments/TransactionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Payments/TransactionStatus.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Permissions/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Permissions/Permission.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Security/RefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Security/RefreshToken.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Security/SecuritySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Security/SecuritySettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Seo/EntityUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Seo/EntityUrl.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Seo/GoogleAnalyticsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Seo/GoogleAnalyticsSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Seo/ISlugEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Seo/ISlugEntity.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Seo/SeoSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Seo/SeoSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/DeliveryDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/DeliveryDate.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/PickupPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/PickupPoints.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/Shipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/Shipment.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/ShipmentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/ShipmentItem.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/ShipmentNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/ShipmentNote.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/ShippingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/ShippingMethod.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/ShippingOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/ShippingOption.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/ShippingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/ShippingSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/ShippingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/ShippingStatus.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Shipping/Warehouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Shipping/Warehouse.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Stores/IStoreLinkEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Stores/IStoreLinkEntity.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Stores/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Stores/Store.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Stores/StoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Stores/StoreExtensions.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/SubBaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/SubBaseEntity.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Tasks/ScheduleTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Tasks/ScheduleTask.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Tax/TaxBasedOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Tax/TaxBasedOn.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Tax/TaxCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Tax/TaxCategory.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Tax/TaxDisplayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Tax/TaxDisplayType.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Tax/TaxProviderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Tax/TaxProviderSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Tax/TaxSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Tax/TaxSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Tax/VatNumberStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Tax/VatNumberStatus.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Vendors/Vendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Vendors/Vendor.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Vendors/VendorNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Vendors/VendorNote.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Vendors/VendorReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Vendors/VendorReview.cs -------------------------------------------------------------------------------- /src/Core/Grand.Domain/Vendors/VendorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Domain/Vendors/VendorSettings.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Caching/ICacheBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Caching/ICacheBase.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Events/CacheEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Events/CacheEvent.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/GrandVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/GrandVersion.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/IStartupApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/IStartupApplication.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/IStartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/IStartupTask.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/IStoreHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/IStoreHelper.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/IWorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/IWorkContext.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Models/BaseModel.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/OperatingSystem.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Plugins/BasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Plugins/BasePlugin.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Plugins/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Plugins/IPlugin.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Plugins/IProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Plugins/IProvider.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Plugins/PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Plugins/PluginInfo.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/Plugins/ThemeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/Plugins/ThemeInfo.cs -------------------------------------------------------------------------------- /src/Core/Grand.Infrastructure/StartupBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.Infrastructure/StartupBase.cs -------------------------------------------------------------------------------- /src/Core/Grand.SharedKernel/Extensions/CommonPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.SharedKernel/Extensions/CommonPath.cs -------------------------------------------------------------------------------- /src/Core/Grand.SharedKernel/Extensions/FormatText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.SharedKernel/Extensions/FormatText.cs -------------------------------------------------------------------------------- /src/Core/Grand.SharedKernel/GrandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Core/Grand.SharedKernel/GrandException.cs -------------------------------------------------------------------------------- /src/Plugins/Authentication.Facebook/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Authentication.Facebook/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Authentication.Facebook/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Authentication.Facebook/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Authentication.Google/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Authentication.Google/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Authentication.Google/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Authentication.Google/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/DiscountRules.Standard/DiscountPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/DiscountRules.Standard/DiscountPlugin.cs -------------------------------------------------------------------------------- /src/Plugins/DiscountRules.Standard/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/DiscountRules.Standard/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/DiscountRules.Standard/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/DiscountRules.Standard/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/ExchangeRate.McExchange/EcbExchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/ExchangeRate.McExchange/EcbExchange.cs -------------------------------------------------------------------------------- /src/Plugins/ExchangeRate.McExchange/IRateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/ExchangeRate.McExchange/IRateProvider.cs -------------------------------------------------------------------------------- /src/Plugins/ExchangeRate.McExchange/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/ExchangeRate.McExchange/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/ExchangeRate.McExchange/NbpExchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/ExchangeRate.McExchange/NbpExchange.cs -------------------------------------------------------------------------------- /src/Plugins/ExchangeRate.McExchange/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/ExchangeRate.McExchange/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Payments.BrainTree/BrainTreeDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.BrainTree/BrainTreeDefaults.cs -------------------------------------------------------------------------------- /src/Plugins/Payments.BrainTree/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.BrainTree/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Payments.BrainTree/StartupApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.BrainTree/StartupApplication.cs -------------------------------------------------------------------------------- /src/Plugins/Payments.BrainTree/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.BrainTree/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Payments.CashOnDelivery/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = ""; 3 | } 4 | -------------------------------------------------------------------------------- /src/Plugins/Payments.CashOnDelivery/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.CashOnDelivery/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Payments.CashOnDelivery/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.CashOnDelivery/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Payments.PayPalStandard/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.PayPalStandard/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Payments.PayPalStandard/PaypalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.PayPalStandard/PaypalHelper.cs -------------------------------------------------------------------------------- /src/Plugins/Payments.PayPalStandard/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Payments.PayPalStandard/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Shipping.ByWeight/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Shipping.ByWeight/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Shipping.ByWeight/StartupApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Shipping.ByWeight/StartupApplication.cs -------------------------------------------------------------------------------- /src/Plugins/Shipping.ByWeight/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Shipping.ByWeight/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Shipping.FixedRateShipping/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Shipping.FixedRateShipping/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Shipping.FixedRateShipping/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Shipping.FixedRateShipping/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Shipping.ShippingPoint/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Shipping.ShippingPoint/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Shipping.ShippingPoint/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Shipping.ShippingPoint/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Tax.CountryStateZip/Domain/TaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.CountryStateZip/Domain/TaxRate.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.CountryStateZip/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.CountryStateZip/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.CountryStateZip/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.CountryStateZip/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/FixedRateTaxDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/FixedRateTaxDefaults.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/FixedRateTaxPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/FixedRateTaxPlugin.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/FixedRateTaxProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/FixedRateTaxProvider.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/Models/FixedTaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/Models/FixedTaxRate.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/StartupApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/StartupApplication.cs -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/Tax.FixedRate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/Tax.FixedRate.csproj -------------------------------------------------------------------------------- /src/Plugins/Tax.FixedRate/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Tax.FixedRate/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Widgets.FacebookPixel/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.FacebookPixel/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.FacebookPixel/Views/Shared/Components/WidgetsFacebookPixel/Default.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | @Html.Raw(Model) -------------------------------------------------------------------------------- /src/Plugins/Widgets.FacebookPixel/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.FacebookPixel/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Widgets.GoogleAnalytics/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.GoogleAnalytics/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.GoogleAnalytics/Views/Shared/Components/WidgetsGoogleAnalytics/Default.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | @Html.Raw(Model) -------------------------------------------------------------------------------- /src/Plugins/Widgets.GoogleAnalytics/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.GoogleAnalytics/logo.jpg -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Assets/vue-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Assets/vue-style.css -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Domain/PictureSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Domain/PictureSlider.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Domain/SliderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Domain/SliderType.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Extensions.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Manifest.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Models/PublicInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Models/PublicInfoModel.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Models/SlideListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Models/SlideListModel.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Models/SlideModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Models/SlideModel.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Services/SliderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Services/SliderService.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/SliderWidgetDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/SliderWidgetDefaults.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/SliderWidgetPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/SliderWidgetPlugin.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/SliderWidgetProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/SliderWidgetProvider.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/SliderWidgetSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/SliderWidgetSettings.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/StartupApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/StartupApplication.cs -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/Widgets.Slider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/Widgets.Slider.csproj -------------------------------------------------------------------------------- /src/Plugins/Widgets.Slider/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Plugins/Widgets.Slider/logo.jpg -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Components/AdminWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Components/AdminWidget.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Components/Affiliate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Components/Affiliate.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Components/LatestOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Components/LatestOrder.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Components/OrderTimeChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Components/OrderTimeChart.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Components/StoreScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Components/StoreScope.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Controllers/TaxController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Controllers/TaxController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Extensions/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Extensions/Constants.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Extensions/HasAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Extensions/HasAccess.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Extensions/ProductList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Extensions/ProductList.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Extensions/UpdatePicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Extensions/UpdatePicture.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Grand.Web.Admin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Grand.Web.Admin.csproj -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/AddressProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/AddressProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/BannerProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/BannerProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/BlogPostProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/BlogPostProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/BrandLayoutProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/BrandLayoutProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/BrandProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/BrandProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CampaignProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CampaignProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CategoryProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CategoryProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CollectionProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CollectionProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/ContactUsProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/ContactUsProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CountryProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CountryProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CourseLevelProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CourseLevelProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CourseProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CourseProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CurrencyProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CurrencyProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/CustomerTagProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/CustomerTagProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/DiscountProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/DiscountProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/DocumentProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/DocumentProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/GiftVoucherProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/GiftVoucherProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/LanguageProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/LanguageProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/LogProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/LogProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/MeasureUnitProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/MeasureUnitProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/NewsItemProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/NewsItemProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/OrderStatusProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/OrderStatusProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/PageLayoutProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/PageLayoutProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/PageProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/PageProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/PickupPointProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/PickupPointProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/ProductProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/ProductProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/QueuedEmailProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/QueuedEmailProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/StoreProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/StoreProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/TaxCategoryProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/TaxCategoryProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/TaxProviderProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/TaxProviderProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/TaxSettingsProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/TaxSettingsProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/TierPriceProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/TierPriceProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/UserApiProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/UserApiProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/VendorProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/VendorProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Mapper/WarehouseProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Mapper/WarehouseProfile.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Catalog/BrandModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Catalog/BrandModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Cms/WidgetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Cms/WidgetModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Common/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Common/Editor.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Common/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Common/EntityType.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Common/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Common/LoginModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Common/ReviewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Common/ReviewModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Common/SearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Common/SearchModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Logging/LogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Logging/LogModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/News/NewsItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/News/NewsItemModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Orders/OrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Orders/OrderModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Pages/PageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Pages/PageModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Admin/Models/Stores/StoreModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Admin/Models/Stores/StoreModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Grand.Web.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Grand.Web.Common.csproj -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Link/IGroupLinkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Link/IGroupLinkModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Link/IStoreLinkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Link/IStoreLinkModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Localization/LocService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Localization/LocService.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Menu/IAdminMenuProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Menu/IAdminMenuProvider.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Menu/SiteMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Menu/SiteMap.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Menu/SiteMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Menu/SiteMapNode.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Models/ILocalizedModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Models/ILocalizedModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Models/ISlugModelLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Models/ISlugModelLocal.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Models/StoreModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Models/StoreModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Page/IPageHeadBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Page/IPageHeadBuilder.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Page/NotifyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Page/NotifyType.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Page/PageHeadBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Page/PageHeadBuilder.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Page/ResourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Page/ResourceLocation.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Startup/DbCheckStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Startup/DbCheckStartup.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Startup/GrandMvcStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Startup/GrandMvcStartup.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/StoreHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/StoreHelper.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/TagHelpers/HtmlTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/TagHelpers/HtmlTagHelper.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/TagHelpers/LinkEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/TagHelpers/LinkEntry.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/TagHelpers/LinkTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/TagHelpers/LinkTagHelper.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/TagHelpers/ResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/TagHelpers/ResourceType.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Themes/IThemeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Themes/IThemeContext.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Themes/IThemeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Themes/IThemeProvider.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Themes/ThemeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Themes/ThemeContext.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/Themes/ThemeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/Themes/ThemeProvider.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web.Common/WorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web.Common/WorkContext.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/App_Data/Download/Index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/App_Data/Download/Index.htm -------------------------------------------------------------------------------- /src/Web/Grand.Web/App_Data/GeoLite2-Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/App_Data/GeoLite2-Country.mmdb -------------------------------------------------------------------------------- /src/Web/Grand.Web/App_Data/TempUploads/Index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/App_Data/TempUploads/Index.htm -------------------------------------------------------------------------------- /src/Web/Grand.Web/App_Data/UrlRewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/App_Data/UrlRewrite.xml -------------------------------------------------------------------------------- /src/Web/Grand.Web/App_Data/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/App_Data/appsettings.json -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/BlogCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/BlogCategories.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/BlogMonths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/BlogMonths.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/BlogPostProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/BlogPostProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/BlogTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/BlogTags.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/CategoryNavigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/CategoryNavigation.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/CollectionNavigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/CollectionNavigation.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/CrossSellProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/CrossSellProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/CustomerNavigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/CustomerNavigation.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/EstimateShipping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/EstimateShipping.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/ExternalMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/ExternalMethods.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/Footer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/Footer.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/GetCoordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/GetCoordinate.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageBestSellers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageBestSellers.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageBlog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageBlog.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageBrands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageBrands.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageCategories.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageCollections.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageNewProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageNewProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageNews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageNews.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/HomePageProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/HomePageProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/InteractiveForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/InteractiveForm.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/Menu.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/OrderSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/OrderSummary.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/OrderTotals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/OrderTotals.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/PageBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/PageBlock.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/Partial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/Partial.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/PersonalizedProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/PersonalizedProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/PopularProductTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/PopularProductTags.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/PopupAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/PopupAction.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/ProductReviews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/ProductReviews.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/RecommendedProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/RecommendedProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/RelatedProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/RelatedProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/SearchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/SearchBox.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/SidebarShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/SidebarShoppingCart.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/SimilarProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/SimilarProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/SuggestedProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/SuggestedProducts.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/VendorNavigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/VendorNavigation.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Components/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Components/Widget.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/BlogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/BlogController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/CatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/CatalogController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/CheckoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/CheckoutController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/CommonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/CommonController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/ComponentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/ComponentController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/CountryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/CountryController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/CourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/CourseController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/DownloadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/DownloadController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/InstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/InstallController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/NewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/NewsController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/OrderController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/PageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/PageController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/PixelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/PixelController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/ProductController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/VendorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/VendorController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Controllers/WishlistController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Controllers/WishlistController.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Endpoints/EndpointProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Endpoints/EndpointProvider.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Endpoints/SlugEndpointProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Endpoints/SlugEndpointProvider.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/BlogCommentEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/BlogCommentEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/Cache/CacheKeyConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/Cache/CacheKeyConst.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/ContactUsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/ContactUsEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/CustomerInfoEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/CustomerInfoEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/NewsCommentEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/NewsCommentEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/OrderNoteEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/OrderNoteEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/PopupInteractiveEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/PopupInteractiveEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/PopupRenderEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/PopupRenderEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Events/ProductReviewEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Events/ProductReviewEvent.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Extensions/MappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Extensions/MappingExtensions.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Extensions/OrderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Extensions/OrderExtensions.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Extensions/PageSeNameConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Extensions/PageSeNameConstants.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Features/Models/Catalog/GetMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Features/Models/Catalog/GetMenu.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Grand.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Grand.Web.csproj -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Blogs/BlogCommentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Blogs/BlogCommentModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Blogs/BlogPostListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Blogs/BlogPostListModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Blogs/BlogPostModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Blogs/BlogPostModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Blogs/BlogPostTagModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Blogs/BlogPostTagModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/BrandModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/BrandModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/CategoryModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/CollectionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/CollectionModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/MenuModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/MenuModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/ProductTagModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/ProductTagModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/SearchBoxModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/SearchBoxModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/SearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/SearchModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Catalog/VendorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Catalog/VendorModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Checkout/CheckoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Checkout/CheckoutModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Cms/WidgetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Cms/WidgetModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/AddressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/AddressModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/ContactUsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/ContactUsModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/CurrencyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/CurrencyModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/FooterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/FooterModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/LanguageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/LanguageModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/LocationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/LocationModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/Logo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/Logo.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/PagerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/PagerModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/PopupModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/PopupModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/SitemapModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/SitemapModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/StoreModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/StoreModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Common/StoreThemeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Common/StoreThemeModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Course/CourseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Course/CourseModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Course/LessonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Course/LessonModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Customer/CoursesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Customer/CoursesModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Customer/DocumentsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Customer/DocumentsModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Customer/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Customer/LoginModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Customer/RegisterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Customer/RegisterModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Customer/SubAccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Customer/SubAccountModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Install/InstallModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Install/InstallModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Media/PictureModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Media/PictureModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/News/AddNewsCommentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/News/AddNewsCommentModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/News/NewsCommentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/News/NewsCommentModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/News/NewsItemListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/News/NewsItemListModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/News/NewsItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/News/NewsItemModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Orders/AddOrderNoteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Orders/AddOrderNoteModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Orders/OrderDetailsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Orders/OrderDetailsModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Orders/OrderPagingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Orders/OrderPagingModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Pages/PageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Pages/PageModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Upgrade/UpgradeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Upgrade/UpgradeModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Vendors/ApplyVendorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Vendors/ApplyVendorModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Models/Vendors/VendorInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Models/Vendors/VendorInfoModel.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Program.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/Grand.Web/Roslyn/Index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Roslyn/Index.htm -------------------------------------------------------------------------------- /src/Web/Grand.Web/Roslyn/NotificationHandler.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Roslyn/NotificationHandler.csx -------------------------------------------------------------------------------- /src/Web/Grand.Web/Roslyn/UseForwardedHeaders.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Roslyn/UseForwardedHeaders.csx -------------------------------------------------------------------------------- /src/Web/Grand.Web/Roslyn/ZipCodeValidation.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Roslyn/ZipCodeValidation.csx -------------------------------------------------------------------------------- /src/Web/Grand.Web/Rotativa/Linux/wkhtmltopdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Rotativa/Linux/wkhtmltopdf -------------------------------------------------------------------------------- /src/Web/Grand.Web/Rotativa/Mac/wkhtmltopdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Rotativa/Mac/wkhtmltopdf -------------------------------------------------------------------------------- /src/Web/Grand.Web/Rotativa/Windows/wkhtmltopdf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Rotativa/Windows/wkhtmltopdf.exe -------------------------------------------------------------------------------- /src/Web/Grand.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Startup.cs -------------------------------------------------------------------------------- /src/Web/Grand.Web/Themes/Default/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Themes/Default/preview.jpg -------------------------------------------------------------------------------- /src/Web/Grand.Web/Themes/Default/theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Themes/Default/theme.cfg -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/AddressAdd.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/AddressAdd.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/AddressEdit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/AddressEdit.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Addresses.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Addresses.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Auctions.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Auctions.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Courses.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Courses.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/DeleteAccount.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/DeleteAccount.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Documents.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Documents.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Info.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Info.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Notes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Notes.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/Reviews.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/Reviews.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/SubAccountAdd.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/SubAccountAdd.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/SubAccounts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/SubAccounts.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Account/UserAgreement.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Account/UserAgreement.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Blog/BlogPost.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Blog/BlogPost.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Blog/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Blog/List.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/BrandAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/BrandAll.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/CollectionAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/CollectionAll.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/ProductsByTag.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/ProductsByTag.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/Search.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/Vendor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/Vendor.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/VendorAll.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/VendorAll.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/VendorReviews.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/VendorReviews.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/_Filtering.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/_Filtering.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/_ModelScript.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/_ModelScript.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/_Pagination.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/_Pagination.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Catalog/_Selectors.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Catalog/_Selectors.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Checkout/Completed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Checkout/Completed.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Checkout/Start.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Checkout/Start.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Checkout/_PaymentInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Checkout/_PaymentInfo.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Checkout/_ReviewData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Checkout/_ReviewData.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Checkout/_Summary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Checkout/_Summary.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Common/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Common/AccessDenied.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Common/ContactUs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Common/ContactUs.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Common/PageNotFound.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Common/PageNotFound.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Common/Sitemap.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Common/Sitemap.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Common/StoreClosed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Common/StoreClosed.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Course/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Course/Details.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Course/Lesson.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Course/Lesson.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Install/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Install/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Knowledgebase/Article.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Knowledgebase/Article.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Knowledgebase/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Knowledgebase/List.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/News/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/News/List.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/News/NewsItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/News/NewsItem.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Order/AddOrderNote.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Order/AddOrderNote.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Order/CustomerOrders.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Order/CustomerOrders.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Order/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Order/Details.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Order/ShipmentDetails.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Order/ShipmentDetails.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Page/PageDetails.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Page/PageDetails.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/AskQuestion.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/AskQuestion.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/NewProducts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/NewProducts.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_AddToCart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_AddToCart.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_AuctionInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_AuctionInfo.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Availability.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Availability.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Breadcrumbs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Breadcrumbs.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Codes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Codes.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Collections.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Collections.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_DeliveryInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_DeliveryInfo.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Pictures.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Pictures.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Prices.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Prices.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_ProductTags.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_ProductTags.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_SendFriend.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_SendFriend.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_ShareButton.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_ShareButton.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_TierPrices.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_TierPrices.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Unavailable.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Unavailable.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Product/_Warehouses.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Product/_Warehouses.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/Head.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/Head.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/Header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/Header.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/OrderTotals.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/OrderTotals.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_AddToCartQV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_AddToCartQV.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_AttributesQV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_AttributesQV.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_AuctionInfoQV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_AuctionInfoQV.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_Cookie.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_Cookie.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_DiscountBox.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_DiscountBox.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_Favicons.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_Favicons.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_HeaderLinks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_HeaderLinks.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_LayoutPopup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_LayoutPopup.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_Logo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_Logo.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_NewsletterBox.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_NewsletterBox.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_Notifications.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_Notifications.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_PricesGroupQV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_PricesGroupQV.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_PricesQV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_PricesQV.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_Print.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_Print.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_SendFriendQV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_SendFriendQV.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_SingleColumn.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_SingleColumn.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_TwoColumns.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_TwoColumns.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Shared/_WarehousesQV.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Shared/_WarehousesQV.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/ShoppingCart/Cart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/ShoppingCart/Cart.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Vendor/ApplyVendor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Vendor/ApplyVendor.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Vendor/ContactVendor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Vendor/ContactVendor.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Vendor/Info.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Vendor/Info.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/Wishlist/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/Wishlist/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/Grand.Web/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/bundleconfig.json -------------------------------------------------------------------------------- /src/Web/Grand.Web/logs/stdout/Index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/logs/stdout/Index.htm -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/acme/Index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/acme/Index.htm -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/custom/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/custom/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/errorpage/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/errorpage/error.css -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/files/Index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/files/Index.htm -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ad.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ae.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/af.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ag.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ai.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/al.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/am.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/an.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ao.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ar.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/as.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/at.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/au.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/aw.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ax.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/az.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ba.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bb.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bd.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/be.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bf.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bg.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bh.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bi.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bj.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bm.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bn.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bo.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/br.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bs.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bt.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bv.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bw.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/by.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/bz.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ca.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cc.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cd.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cf.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cg.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ch.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ci.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ck.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cl.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cm.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cn.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/co.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cr.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cs.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cu.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cv.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cx.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cy.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/cz.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/de.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/dj.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/dk.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/dm.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/do.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/dz.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ec.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ee.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/eg.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/eh.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/er.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/es.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/et.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/fi.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/fj.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/fk.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/fm.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/fo.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/fr.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ga.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gb.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gd.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ge.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gf.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gh.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gi.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gl.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gm.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gn.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gp.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gq.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gr.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gs.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gt.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gu.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gw.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/gy.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/hk.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/hm.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/hn.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/hr.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ht.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/hu.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/id.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ie.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/il.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/in.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/io.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/iq.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/images/flags/ir.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/thumbs/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/images/uploaded/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/assets/install/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/assets/install/style.css -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/banner.jpg -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/errorpage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/errorpage.htm -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/firebase-messaging-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/firebase-messaging-sw.js -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/logo.png -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/manifest.json -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/pdf/footers/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/pdf/footers/order.html -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/robots.additions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/css/cart/cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/css/cart/cart.css -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/css/print.css -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/images/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/images/rss.svg -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/images/twitter.svg -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/images/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/images/youtube.svg -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/lib/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/lib/axios.min.js -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/lib/pikaday.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/lib/pikaday.min.js -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/lib/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/lib/popper.min.js -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/lib/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/lib/vue.min.js -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/script/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/script/app.js -------------------------------------------------------------------------------- /src/Web/Grand.Web/wwwroot/theme/script/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/grandnode2/HEAD/src/Web/Grand.Web/wwwroot/theme/script/menu.js --------------------------------------------------------------------------------