├── .gitignore ├── ApiBindingsGenerator ├── ApiBindingsGenerator.csproj ├── Extensions.cs ├── Generator.cs ├── NullableAttributes.cs └── Schema.cs ├── Categories.md ├── ClientApp ├── ClientApp.csproj ├── Program.cs └── nopapi.swagger.json ├── Customers.md ├── Dockerfile ├── LICENSE ├── Nop.Plugin.Api.Tests ├── ControllersTests │ ├── Categories │ │ ├── CategoriesControllerTests_CreateCategory.cs │ │ ├── CategoriesControllerTests_GetCategories.cs │ │ ├── CategoriesControllerTests_GetCategoriesById.cs │ │ └── CategoriesControllerTests_GetCategoriesCount.cs │ ├── Customers │ │ ├── CustomersControllerTests_GetCustomerById.cs │ │ ├── CustomersControllerTests_GetCustomers.cs │ │ ├── CustomersControllerTests_GetCustomersCount.cs │ │ └── CustomersControllerTests_Search.cs │ ├── Orders │ │ ├── OrdersControllerTests_GetOrderById.cs │ │ ├── OrdersControllerTests_GetOrders.cs │ │ ├── OrdersControllerTests_GetOrdersByCustomerId.cs │ │ └── OrdersControllerTests_GetOrdersCount.cs │ ├── ProductCategoryMappings │ │ ├── ProductCategoryMappingsControllerTests_GetMappingById.cs │ │ ├── ProductCategoryMappingsControllerTests_GetMappings.cs │ │ └── ProductCategoryMappingsControllerTests_GetMappingsCount.cs │ ├── Products │ │ ├── ProductsControllerTests_GetProductById.cs │ │ ├── ProductsControllerTests_GetProducts.cs │ │ └── ProductsControllerTests_GetProductsCount.cs │ └── ShoppingCartItems │ │ ├── ShoppingCartItemsControllerTests_GetShoppingCartItems.cs │ │ └── ShoppingCartItemsControllerTests_GetShoppingCartItemsByCustomerId.cs ├── ConvertersTests │ ├── ApiTypeConverter │ │ ├── ApiTypeConverterTests_ToDateTimeNullable.cs │ │ ├── ApiTypeConverterTests_ToEnumNullable.cs │ │ ├── ApiTypeConverterTests_ToInt.cs │ │ ├── ApiTypeConverterTests_ToIntNullable.cs │ │ ├── ApiTypeConverterTests_ToListOfInts.cs │ │ └── ApiTypeConverterTests_ToStatus.cs │ └── ObjectConverter │ │ ├── DummyObjects │ │ └── SomeTestingObject.cs │ │ └── ObjectConverterTests_ToObject.cs ├── Helpers │ └── ActionResultExecutor.cs ├── MappingTests │ └── CategoryMappings_Merge.cs ├── ModelBinderTests │ ├── DummyObjects │ │ └── DummyModel.cs │ ├── JsonModelBinderTests_BindModel.cs │ └── ParametersModelBinderTests_BindModel.cs ├── Nop.Plugin.Api.Tests.csproj ├── SerializersTests │ ├── DummyObjects │ │ ├── DummyObjectWithComplexTypes.cs │ │ ├── DummyObjectWithSimpleTypes.cs │ │ ├── SerializableDummyObjectWithComplexTypes.cs │ │ └── SerializableDummyObjectWithSimpleTypes.cs │ └── JsonFieldsSerializerTests_Serialize.cs ├── ServicesTests │ ├── Categories │ │ ├── GetCategories │ │ │ ├── CategoriesApiServiceTests_GetCategories_ProductIdParameter.cs │ │ │ ├── CategoriesApiServiceTests_GetCategories_SinceIdParameter.cs │ │ │ ├── CategoryApiServiceTests_GetCategories_CreatedParameters.cs │ │ │ ├── CategoryApiServiceTests_GetCategories_DefaultParameters.cs │ │ │ ├── CategoryApiServiceTests_GetCategories_IdsParameter.cs │ │ │ ├── CategoryApiServiceTests_GetCategories_LimitParameter.cs │ │ │ ├── CategoryApiServiceTests_GetCategories_PageParameter.cs │ │ │ ├── CategoryApiServiceTests_GetCategories_PublishedStatusParameter.cs │ │ │ └── CategoryApiServiceTests_GetCategories_UpdatedParameters.cs │ │ ├── GetCategoriesCount │ │ │ ├── CategoryApiServiceTests_GetCategoriesCount_CreatedParameters.cs │ │ │ ├── CategoryApiServiceTests_GetCategoriesCount_DefaultParameters.cs │ │ │ ├── CategoryApiServiceTests_GetCategoriesCount_ProductIdParameter.cs │ │ │ ├── CategoryApiServiceTests_GetCategoriesCount_PublishedStatusParameter.cs │ │ │ └── CategoryApiServiceTests_GetCategoriesCount_UpdatedParameters.cs │ │ └── GetCategoryById │ │ │ └── CategoryApiServiceTests_GetCategoryById.cs │ ├── CountryApiServiceTests.cs │ ├── Customers │ │ └── CustomerApiServiceTests.cs │ ├── Orders │ │ ├── GetOrderById │ │ │ └── OrderApiServiceTests_GetOrderById.cs │ │ ├── GetOrders │ │ │ ├── OrderApiServiceTests_GetOrders_CreatedParameters.cs │ │ │ ├── OrderApiServiceTests_GetOrders_CustomerIdParameter.cs │ │ │ ├── OrderApiServiceTests_GetOrders_DefaultParameters.cs │ │ │ ├── OrderApiServiceTests_GetOrders_IdsParameter.cs │ │ │ ├── OrderApiServiceTests_GetOrders_LimitParameter.cs │ │ │ ├── OrderApiServiceTests_GetOrders_PageParameter.cs │ │ │ ├── OrderApiServiceTests_GetOrders_SinceIdParameter.cs │ │ │ └── OrderApiServiceTests_GetOrders_StatusesParameters.cs │ │ ├── GetOrdersByCustomerId │ │ │ └── OrderApiServiceTests_GetOrdersByCustomerId.cs │ │ └── GetOrdersCount │ │ │ ├── OrderApiServiceTests_GetOrdersCount_CreatedParameters.cs │ │ │ ├── OrderApiServiceTests_GetOrdersCount_CustomerIdParameter.cs │ │ │ ├── OrderApiServiceTests_GetOrdersCount_DefaultParameters.cs │ │ │ └── OrderApiServiceTests_GetOrdersCount_StatusesParameters.cs │ ├── ProductCategoryMappings │ │ ├── GetMappingById │ │ │ └── ProductCategoryMappingsApiServiceTests_GetById.cs │ │ ├── GetMappings │ │ │ ├── ProductCategoryMappingsApiServiceTests_GetMappings_CategoryIdParameter.cs │ │ │ ├── ProductCategoryMappingsApiServiceTests_GetMappings_DefaultParameters.cs │ │ │ ├── ProductCategoryMappingsApiServiceTests_GetMappings_LimitParameter.cs │ │ │ ├── ProductCategoryMappingsApiServiceTests_GetMappings_PageParameter.cs │ │ │ ├── ProductCategoryMappingsApiServiceTests_GetMappings_ProductIdParameter.cs │ │ │ └── ProductCategoryMappingsApiServiceTests_GetMappings_SinceIdParameter.cs │ │ └── GetMappingsCount │ │ │ └── ProductCategoryMappingsApiServiceTests_GetMappingsCount.cs │ ├── Products │ │ ├── GetProductById │ │ │ └── ProductApiServiceTests_GetProductById.cs │ │ ├── GetProducts │ │ │ ├── ProductApiServiceTests_GetProducts_CategoryIdParameter.cs │ │ │ ├── ProductApiServiceTests_GetProducts_CreatedParameters.cs │ │ │ ├── ProductApiServiceTests_GetProducts_DefaultParameters.cs │ │ │ ├── ProductApiServiceTests_GetProducts_IdsParameter.cs │ │ │ ├── ProductApiServiceTests_GetProducts_LimitParameter.cs │ │ │ ├── ProductApiServiceTests_GetProducts_PageParameter.cs │ │ │ ├── ProductApiServiceTests_GetProducts_PublishedStatusParameter.cs │ │ │ ├── ProductApiServiceTests_GetProducts_SinceIdParameter.cs │ │ │ ├── ProductApiServiceTests_GetProducts_UpdatedParameters.cs │ │ │ └── ProductApiServiceTests_GetProducts_VendorNameParameter.cs │ │ └── GetProductsCount │ │ │ ├── ProductApiServiceTests_GetProductsCount_CategoryIdParameter.cs │ │ │ ├── ProductApiServiceTests_GetProductsCount_CreatedParameters.cs │ │ │ ├── ProductApiServiceTests_GetProductsCount_DefaultParameters.cs │ │ │ ├── ProductApiServiceTests_GetProductsCount_PublishedStatusParameter.cs │ │ │ ├── ProductApiServiceTests_GetProductsCount_UpdatedParameters.cs │ │ │ └── ProductApiServiceTests_GetProductsCount_VendorNameParameter.cs │ ├── ShoppingCartItems │ │ └── GetShoppingCartItems │ │ │ ├── ShoppingCartItemsTests_GetShoppingCartItems_CreatedParameters.cs │ │ │ ├── ShoppingCartItemsTests_GetShoppingCartItems_CustomerIdParameter.cs │ │ │ ├── ShoppingCartItemsTests_GetShoppingCartItems_LimitParameter.cs │ │ │ ├── ShoppingCartItemsTests_GetShoppingCartItems_PageParameters.cs │ │ │ └── ShoppingCartItemsTests_GetShoppingCartItems_UpdatedParameters.cs │ └── StateProvinceApiServiceTests.cs ├── SetUp.cs ├── ValidatorTests │ ├── FieldsValidatorTests_GetValidFields.cs │ └── TypeValidatorTests_IsValid.cs ├── app.config └── packages.config ├── Nop.Plugin.Api ├── Areas │ └── Admin │ │ ├── Controllers │ │ └── ApiAdminController.cs │ │ ├── Models │ │ └── ConfigurationModel.cs │ │ └── Views │ │ ├── ApiAdmin │ │ └── Settings.cshtml │ │ └── _ViewImports.cshtml ├── Attributes │ ├── BaseAttributeInvoker.cs │ ├── DoNotMap.cs │ ├── FromQueryJsonAttribute.cs │ ├── GetRequestsErrorInterceptorActionFilter.cs │ ├── ImageAttribute.cs │ ├── ImageCollectionAttribute.cs │ ├── ProductTypeValidationAttribute.cs │ └── ValidateVendor.cs ├── Authorization │ ├── Attributes │ │ └── AuthorizePermissionAttribute.cs │ ├── Policies │ │ ├── ActiveApiPluginAuthorizationPolicy.cs │ │ ├── CustomerRoleAuthorizationPolicy.cs │ │ └── ValidSchemeAuthorizationPolicy.cs │ └── Requirements │ │ ├── ActiveApiPluginRequirement.cs │ │ ├── AuthorizationSchemeRequirement.cs │ │ └── CustomerRoleRequirement.cs ├── AutoMapper │ ├── ApiMapperConfiguration.cs │ └── AutoMapperApiConfiguration.cs ├── Configuration │ ├── ApiConfiguration.cs │ └── ApplicationPartsLogger.cs ├── Controllers │ ├── BaseApiController.cs │ ├── CategoriesController.cs │ ├── CountriesController.cs │ ├── CurrenciesController.cs │ ├── CustomerRolesController.cs │ ├── CustomersController.cs │ ├── LanguagesController.cs │ ├── ManufacturersController.cs │ ├── NewsLetterSubscriptionController.cs │ ├── OrderItemsController.cs │ ├── OrdersController.cs │ ├── ProductAttributesController.cs │ ├── ProductCategoryMappingsController.cs │ ├── ProductManufacturerMappingsController.cs │ ├── ProductSpecificationAttributesController.cs │ ├── ProductWarehouseInventoryController.cs │ ├── ProductsController.cs │ ├── ShoppingCartItemsController.cs │ ├── SpecificationAttributesController.cs │ ├── StateProvincesController.cs │ ├── StoreController.cs │ ├── TaxesController.cs │ ├── TokenController.cs │ ├── TopicsController.cs │ └── WarehousesController.cs ├── Converters │ ├── ApiTypeConverter.cs │ ├── IApiTypeConverter.cs │ ├── IObjectConverter.cs │ └── ObjectConverter.cs ├── DTOs │ ├── AddressDto.cs │ ├── Base │ │ └── BaseDto.cs │ ├── BinaryFileDto.cs │ ├── Categories │ │ ├── CategoriesCountRootObject.cs │ │ ├── CategoriesRootObject.cs │ │ └── CategoryDto.cs │ ├── CountriesRootObject.cs │ ├── CountryDto.cs │ ├── CurrenciesRootObject.cs │ ├── CurrencyDto.cs │ ├── CustomerRoles │ │ ├── CustomerRoleDto.cs │ │ └── CustomerRolesRootObject.cs │ ├── Customers │ │ ├── BaseCustomerDto.cs │ │ ├── CustomerAttributeMappingDto.cs │ │ ├── CustomerDto.cs │ │ ├── CustomersCountRootObject.cs │ │ └── CustomersRootObject.cs │ ├── Errors │ │ └── ErrorsRootObject.cs │ ├── ISerializableObject.cs │ ├── Images │ │ ├── ImageDto.cs │ │ └── ImageMappingDto.cs │ ├── Languages │ │ ├── LanguageDto.cs │ │ ├── LanguagesRootObject.cs │ │ └── LocalizedNameDto.cs │ ├── Manufacturers │ │ ├── DiscountManufacturerMappingDto.cs │ │ ├── ManufacturerDto.cs │ │ ├── ManufacturersCountRootObject.cs │ │ └── ManufacturersRootObject.cs │ ├── NewsLetterSubscriptions │ │ ├── NewsLetterSubscriptionDto.cs │ │ └── NewsLetterSubscriptionsRootObject.cs │ ├── OrderItems │ │ ├── OrderItemDto.cs │ │ ├── OrderItemsCountRootObject.cs │ │ └── OrderItemsRootObject.cs │ ├── Orders │ │ ├── OrderDto.cs │ │ ├── OrderStatus.cs │ │ ├── OrdersCountRootObject.cs │ │ ├── OrdersRootObject.cs │ │ ├── PaymentStatus.cs │ │ ├── ShippingStatus.cs │ │ └── SingleOrderRootObject.cs │ ├── ProductAttributes │ │ ├── ProductAttributeDto.cs │ │ ├── ProductAttributesCountRootObject.cs │ │ └── ProductAttributesRootObjectDto.cs │ ├── ProductCategoryMappings │ │ ├── ProductCategoryMappingsCountRootObject.cs │ │ ├── ProductCategoryMappingsDto.cs │ │ └── ProductCategoryMappingsRootObject.cs │ ├── ProductItemAttributeDto.cs │ ├── ProductManufacturerMappings │ │ ├── ProductManufacturerMappingsCountRootObject.cs │ │ ├── ProductManufacturerMappingsDto.cs │ │ └── ProductManufacturerMappingsRootObject.cs │ ├── ProductWarehouseIventories │ │ ├── ProductWarehouseInventoryDto.cs │ │ └── ProductWarehouseInventoryRootObject.cs │ ├── Products │ │ ├── ProductAttributeCombinationDto.cs │ │ ├── ProductAttributeMappingDto.cs │ │ ├── ProductAttributeValueDto.cs │ │ ├── ProductCategoriesRootObjectDto.cs │ │ ├── ProductDto.cs │ │ ├── ProductsCountRootObject.cs │ │ └── ProductsRootObjectDto.cs │ ├── ShoppingCarts │ │ ├── ShoppingCartItemDto.cs │ │ ├── ShoppingCartItemsRootObject.cs │ │ └── ShoppingCartType.cs │ ├── SpecificationAttributes │ │ ├── ProductSpecificationAttributeDto.cs │ │ ├── ProductSpecificationAttributesCountRootObject.cs │ │ ├── ProductSpecificationAttributesRootObjectDto.cs │ │ ├── SpecificationAttributeDto.cs │ │ ├── SpecificationAttributeOptionDto.cs │ │ ├── SpecificationAttributesCountRootObject.cs │ │ └── SpecificationAttributesRootObjectDto.cs │ ├── StateProvinces │ │ ├── StateProvinceDto.cs │ │ └── StateProvincesRootObject.cs │ ├── Stores │ │ ├── StoreDto.cs │ │ └── StoresRootObject.cs │ ├── Taxes │ │ ├── TaxCategoriesRootObject.cs │ │ └── TaxCategoryDto.cs │ ├── Topics │ │ ├── TopicDto.cs │ │ └── TopicsRootObject.cs │ └── Warehouses │ │ ├── WarehouseRootObject.cs │ │ └── WarehousesDto.cs ├── DataStructures │ └── ApiList.cs ├── Delta │ └── Delta.cs ├── Domain │ └── ApiSettings.cs ├── Factories │ ├── AddressFactory.cs │ ├── CategoryFactory.cs │ ├── CustomerFactory.cs │ ├── IFactory.cs │ ├── ManufacturerFactory.cs │ ├── OrderFactory.cs │ ├── ProductFactory.cs │ ├── ShoppingCartItemFactory.cs │ ├── TopicFactory.cs │ └── WarehouseFactory.cs ├── Helpers │ ├── CustomerRolesHelper.cs │ ├── DTOHelper.cs │ ├── ICustomerRolesHelper.cs │ ├── IDTOHelper.cs │ ├── IJsonHelper.cs │ ├── IMappingHelper.cs │ ├── JTokenHelper.cs │ ├── JsonHelper.cs │ ├── MappingHelper.cs │ └── ReflectionHelper.cs ├── Infrastructure │ ├── ApiPlugin.cs │ ├── ApiStartup.cs │ ├── Constants.cs │ └── DependencyRegister.cs ├── JSON │ ├── ActionResults │ │ ├── ErrorActionResult.cs │ │ └── RawJsonActionResult.cs │ └── Serializers │ │ ├── IJsonFieldsSerializer.cs │ │ └── JsonFieldsSerializer.cs ├── MappingExtensions │ ├── AddressDtoMappings.cs │ ├── BaseMapping.cs │ ├── CategoryDtoMappings.cs │ ├── ConfigurationMappings.cs │ ├── CountryDtoMappings.cs │ ├── CurrencyDtoMappings.cs │ ├── CustomerDtoMappings.cs │ ├── CustomerRoleDtoMappings.cs │ ├── LanguageDtoMappings.cs │ ├── ManufacturerDtoMappings.cs │ ├── NewsLetterSubscriptoonDtoMappings.cs │ ├── OrderDtoMappings.cs │ ├── OrderItemDtoMappings.cs │ ├── ProductAttributeCombinationDtoMappings.cs │ ├── ProductAttributeDtoMappings.cs │ ├── ProductCategoryMappingDtoMappings.cs │ ├── ProductDtoMappings.cs │ ├── ProductManufacturerMappingDtoMappings.cs │ ├── ProductWarehouseInventoryDtoMappings.cs │ ├── ShoppingCartItemDtoMappings.cs │ ├── SpecificationAttributeDtoMapping.cs │ ├── StateProvinceDtoMappings.cs │ ├── StoreDtoMappings.cs │ ├── TaxCategoryDtoMappings.cs │ ├── TopicDtoMappings.cs │ └── WarehouseDtoMappings.cs ├── Maps │ ├── IJsonPropertyMap.cs │ └── JsonPropertyMap.cs ├── ModelBinders │ ├── JsonModelBinder.cs │ ├── JsonQueryModelBinder.cs │ └── ParametersModelBinder.cs ├── Models │ ├── Authentication │ │ ├── TokenRequest.cs │ │ └── TokenResponse.cs │ ├── CategoriesParameters │ │ ├── BaseCategoriesParametersModel.cs │ │ ├── CategoriesCountParametersModel.cs │ │ └── CategoriesParametersModel.cs │ ├── CustomersParameters │ │ ├── CustomersParametersModel.cs │ │ └── CustomersSearchParametersModel.cs │ ├── DefaultWebApiErrorsModel.cs │ ├── ManufacturersParameters │ │ ├── BaseManufacturersParametersModel.cs │ │ ├── ManufacturersCountParametersModel.cs │ │ └── ManufacturersParametersModel.cs │ ├── NewsLetterSubscriptionsParameters │ │ └── NewsLetterSubscriptionsParametersModel.cs │ ├── OrderItemsParameters │ │ └── OrderItemsParametersModel.cs │ ├── OrdersParameters │ │ ├── BaseOrdersParametersModel.cs │ │ ├── OrdersCountParametersModel.cs │ │ └── OrdersParametersModel.cs │ ├── ProductAttributesParameters │ │ └── ProductAttributesParametersModel.cs │ ├── ProductCategoryMappingsParameters │ │ ├── BaseCategoryMappingsParametersModel.cs │ │ ├── ProductCategoryMappingsCountParametersModel.cs │ │ └── ProductCategoryMappingsParametersModel.cs │ ├── ProductManufacturerMappingsParameters │ │ ├── BaseManufacturerMappingsParametersModel.cs │ │ ├── ProductManufacturerMappingsCountParametersModel.cs │ │ └── ProductManufacturerMappingsParametersModel.cs │ ├── ProductSpecificationAttributesParameters │ │ ├── ProductSpecificationAttributesCountParametersModel.cs │ │ └── ProductSpecificationAttributesParametersModel.cs │ ├── ProductWarehouseInventoryParameters │ │ └── ProductWarehouseInventoryParametersModel.cs │ ├── ProductsParameters │ │ ├── BaseProductsParametersModel.cs │ │ ├── ProductCategoriesParametersModel.cs │ │ ├── ProductsCountParametersModel.cs │ │ └── ProductsParametersModel.cs │ ├── ShoppingCartsParameters │ │ ├── ShoppingCartItemsCreateParametersModel.cs │ │ ├── ShoppingCartItemsDeleteParametersModel.cs │ │ └── ShoppingCartItemsParametersModel.cs │ ├── SpecificationAttributesParameters │ │ ├── SpecificationAttributesCountParametersModel.cs │ │ └── SpecificationAttributesParametersModel.cs │ ├── TopicsParameters │ │ └── TopicsParametersModel.cs │ └── WarehouseParameters │ │ └── WarehousesParametersModel.cs ├── Nop.Plugin.Api.csproj ├── Services │ ├── AddressApiService.cs │ ├── BearerTokenAuthenticationService.cs │ ├── BearerTokenOrCookieAuthenticationService.cs │ ├── CategoryApiService.cs │ ├── CustomerApiService.cs │ ├── IAddressApiService.cs │ ├── ICategoryApiService.cs │ ├── ICustomerApiService.cs │ ├── IManufacturerApiService.cs │ ├── INewsLetterSubscriptionApiService.cs │ ├── IOrderApiService.cs │ ├── IOrderItemApiService.cs │ ├── IProductApiService.cs │ ├── IProductAttributeConverter.cs │ ├── IProductAttributesApiService.cs │ ├── IProductCategoryMappingsApiService.cs │ ├── IProductManufacturerMappingsApiService.cs │ ├── IProductPictureService.cs │ ├── IProductWarehouseInventoriesApiService.cs │ ├── IShoppingCartItemApiService.cs │ ├── ISpecificationAttributeApiService.cs │ ├── IWarehouseApiService.cs │ ├── ManufacturerApiService.cs │ ├── NewsLetterSubscriptionApiService.cs │ ├── OrderApiService.cs │ ├── OrderItemApiService.cs │ ├── ProductApiService.cs │ ├── ProductAttributeConverter.cs │ ├── ProductAttributesApiService.cs │ ├── ProductCategoryMappingsApiService.cs │ ├── ProductManufacturerMappingsApiService.cs │ ├── ProductPictureService.cs │ ├── ProductWarehouseInventoriesApiService.cs │ ├── ShoppingCartItemApiService.cs │ ├── SpecificationAttributesApiService.cs │ ├── WarehouseApiService.cs │ └── WebApiStoreContext.cs ├── Validators │ ├── AddressDtoValidator.cs │ ├── BaseDtoValidator.cs │ ├── CategoryDtoValidator.cs │ ├── CustomerDtoValidator.cs │ ├── FieldsValidator.cs │ ├── IFieldsValidator.cs │ ├── ManufacturerDtoValidator.cs │ ├── OrderDtoValidator.cs │ ├── OrderItemDtoValidator.cs │ ├── ProductAttributeCombinationDtoValidator.cs │ ├── ProductAttributeDtoValidator.cs │ ├── ProductCategoryMappingDtoValidator.cs │ ├── ProductDtoValidator.cs │ ├── ProductManufacturerMappingDtoValidator.cs │ ├── ProductSpecificationAttributeDtoValidator.cs │ ├── ShoppingCartItemDtoValidator.cs │ ├── SpecificationAttributeDtoValidator.cs │ ├── SpecificationAttributeOptionDtoValidator.cs │ └── TypeValidator.cs ├── logo.jpg └── plugin.json ├── OrderItems.md ├── Orders.md ├── ProductCategoryMappings.md ├── Products.md ├── README.md ├── ShoppingCartItems.md ├── WebHooks.md ├── api-for-nopcommerce.sln ├── appsettings-docker.json ├── plugins-docker.json └── uploadedItems.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /ApiBindingsGenerator/ApiBindingsGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ApiBindingsGenerator/ApiBindingsGenerator.csproj -------------------------------------------------------------------------------- /ApiBindingsGenerator/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ApiBindingsGenerator/Extensions.cs -------------------------------------------------------------------------------- /ApiBindingsGenerator/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ApiBindingsGenerator/Generator.cs -------------------------------------------------------------------------------- /ApiBindingsGenerator/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ApiBindingsGenerator/NullableAttributes.cs -------------------------------------------------------------------------------- /ApiBindingsGenerator/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ApiBindingsGenerator/Schema.cs -------------------------------------------------------------------------------- /Categories.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ClientApp/ClientApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ClientApp/ClientApp.csproj -------------------------------------------------------------------------------- /ClientApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ClientApp/Program.cs -------------------------------------------------------------------------------- /ClientApp/nopapi.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/ClientApp/nopapi.swagger.json -------------------------------------------------------------------------------- /Customers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Customers.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/LICENSE -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_CreateCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_CreateCategory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_GetCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_GetCategories.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_GetCategoriesById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_GetCategoriesById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_GetCategoriesCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Categories/CategoriesControllerTests_GetCategoriesCount.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_GetCustomerById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_GetCustomerById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_GetCustomers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_GetCustomers.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_GetCustomersCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_GetCustomersCount.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Customers/CustomersControllerTests_Search.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrderById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrderById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrders.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrdersByCustomerId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrdersByCustomerId.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrdersCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Orders/OrdersControllerTests_GetOrdersCount.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/ProductCategoryMappings/ProductCategoryMappingsControllerTests_GetMappingById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/ProductCategoryMappings/ProductCategoryMappingsControllerTests_GetMappingById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/ProductCategoryMappings/ProductCategoryMappingsControllerTests_GetMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/ProductCategoryMappings/ProductCategoryMappingsControllerTests_GetMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/ProductCategoryMappings/ProductCategoryMappingsControllerTests_GetMappingsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/ProductCategoryMappings/ProductCategoryMappingsControllerTests_GetMappingsCount.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Products/ProductsControllerTests_GetProductById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Products/ProductsControllerTests_GetProductById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Products/ProductsControllerTests_GetProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Products/ProductsControllerTests_GetProducts.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/Products/ProductsControllerTests_GetProductsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/Products/ProductsControllerTests_GetProductsCount.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/ShoppingCartItems/ShoppingCartItemsControllerTests_GetShoppingCartItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/ShoppingCartItems/ShoppingCartItemsControllerTests_GetShoppingCartItems.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ControllersTests/ShoppingCartItems/ShoppingCartItemsControllerTests_GetShoppingCartItemsByCustomerId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ControllersTests/ShoppingCartItems/ShoppingCartItemsControllerTests_GetShoppingCartItemsByCustomerId.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToDateTimeNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToDateTimeNullable.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToEnumNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToEnumNullable.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToInt.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToIntNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToIntNullable.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToListOfInts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToListOfInts.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ApiTypeConverter/ApiTypeConverterTests_ToStatus.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ObjectConverter/DummyObjects/SomeTestingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ObjectConverter/DummyObjects/SomeTestingObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ConvertersTests/ObjectConverter/ObjectConverterTests_ToObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ConvertersTests/ObjectConverter/ObjectConverterTests_ToObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/Helpers/ActionResultExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/Helpers/ActionResultExecutor.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/MappingTests/CategoryMappings_Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/MappingTests/CategoryMappings_Merge.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ModelBinderTests/DummyObjects/DummyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ModelBinderTests/DummyObjects/DummyModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ModelBinderTests/JsonModelBinderTests_BindModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ModelBinderTests/JsonModelBinderTests_BindModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ModelBinderTests/ParametersModelBinderTests_BindModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ModelBinderTests/ParametersModelBinderTests_BindModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/Nop.Plugin.Api.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/Nop.Plugin.Api.Tests.csproj -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/DummyObjectWithComplexTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/DummyObjectWithComplexTypes.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/DummyObjectWithSimpleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/DummyObjectWithSimpleTypes.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/SerializableDummyObjectWithComplexTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/SerializableDummyObjectWithComplexTypes.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/SerializableDummyObjectWithSimpleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/SerializersTests/DummyObjects/SerializableDummyObjectWithSimpleTypes.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/SerializersTests/JsonFieldsSerializerTests_Serialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/SerializersTests/JsonFieldsSerializerTests_Serialize.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoriesApiServiceTests_GetCategories_ProductIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoriesApiServiceTests_GetCategories_ProductIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoriesApiServiceTests_GetCategories_SinceIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoriesApiServiceTests_GetCategories_SinceIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_CreatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_CreatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_DefaultParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_IdsParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_IdsParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_LimitParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_LimitParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_PageParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_PageParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_PublishedStatusParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_PublishedStatusParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_UpdatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategories/CategoryApiServiceTests_GetCategories_UpdatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_CreatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_CreatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_DefaultParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_ProductIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_ProductIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_PublishedStatusParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_PublishedStatusParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_UpdatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoriesCount/CategoryApiServiceTests_GetCategoriesCount_UpdatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoryById/CategoryApiServiceTests_GetCategoryById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Categories/GetCategoryById/CategoryApiServiceTests_GetCategoryById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/CountryApiServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/CountryApiServiceTests.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Customers/CustomerApiServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Customers/CustomerApiServiceTests.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrderById/OrderApiServiceTests_GetOrderById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrderById/OrderApiServiceTests_GetOrderById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_CreatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_CreatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_CustomerIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_CustomerIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_DefaultParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_IdsParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_IdsParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_LimitParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_LimitParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_PageParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_PageParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_SinceIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_SinceIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_StatusesParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrders/OrderApiServiceTests_GetOrders_StatusesParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersByCustomerId/OrderApiServiceTests_GetOrdersByCustomerId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersByCustomerId/OrderApiServiceTests_GetOrdersByCustomerId.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_CreatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_CreatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_CustomerIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_CustomerIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_DefaultParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_StatusesParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Orders/GetOrdersCount/OrderApiServiceTests_GetOrdersCount_StatusesParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappingById/ProductCategoryMappingsApiServiceTests_GetById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappingById/ProductCategoryMappingsApiServiceTests_GetById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_CategoryIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_CategoryIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_DefaultParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_LimitParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_LimitParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_PageParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_PageParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_ProductIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_ProductIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_SinceIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappings/ProductCategoryMappingsApiServiceTests_GetMappings_SinceIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappingsCount/ProductCategoryMappingsApiServiceTests_GetMappingsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ProductCategoryMappings/GetMappingsCount/ProductCategoryMappingsApiServiceTests_GetMappingsCount.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductById/ProductApiServiceTests_GetProductById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductById/ProductApiServiceTests_GetProductById.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_CategoryIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_CategoryIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_CreatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_CreatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_DefaultParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_IdsParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_IdsParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_LimitParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_LimitParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_PageParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_PageParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_PublishedStatusParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_PublishedStatusParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_SinceIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_SinceIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_UpdatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_UpdatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_VendorNameParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProducts/ProductApiServiceTests_GetProducts_VendorNameParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_CategoryIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_CategoryIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_CreatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_CreatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_DefaultParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_PublishedStatusParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_PublishedStatusParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_UpdatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_UpdatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_VendorNameParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/Products/GetProductsCount/ProductApiServiceTests_GetProductsCount_VendorNameParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_CreatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_CreatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_CustomerIdParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_CustomerIdParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_LimitParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_LimitParameter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_PageParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_PageParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_UpdatedParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/ShoppingCartItems/GetShoppingCartItems/ShoppingCartItemsTests_GetShoppingCartItems_UpdatedParameters.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ServicesTests/StateProvinceApiServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ServicesTests/StateProvinceApiServiceTests.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/SetUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/SetUp.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ValidatorTests/FieldsValidatorTests_GetValidFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ValidatorTests/FieldsValidatorTests_GetValidFields.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/ValidatorTests/TypeValidatorTests_IsValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/ValidatorTests/TypeValidatorTests_IsValid.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/app.config -------------------------------------------------------------------------------- /Nop.Plugin.Api.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api.Tests/packages.config -------------------------------------------------------------------------------- /Nop.Plugin.Api/Areas/Admin/Controllers/ApiAdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Areas/Admin/Controllers/ApiAdminController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Areas/Admin/Models/ConfigurationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Areas/Admin/Models/ConfigurationModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Areas/Admin/Views/ApiAdmin/Settings.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Areas/Admin/Views/ApiAdmin/Settings.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Api/Areas/Admin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Areas/Admin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/BaseAttributeInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/BaseAttributeInvoker.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/DoNotMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/DoNotMap.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/FromQueryJsonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/FromQueryJsonAttribute.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/GetRequestsErrorInterceptorActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/GetRequestsErrorInterceptorActionFilter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/ImageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/ImageAttribute.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/ImageCollectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/ImageCollectionAttribute.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/ProductTypeValidationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/ProductTypeValidationAttribute.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Attributes/ValidateVendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Attributes/ValidateVendor.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Authorization/Attributes/AuthorizePermissionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Authorization/Attributes/AuthorizePermissionAttribute.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Authorization/Policies/ActiveApiPluginAuthorizationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Authorization/Policies/ActiveApiPluginAuthorizationPolicy.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Authorization/Policies/CustomerRoleAuthorizationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Authorization/Policies/CustomerRoleAuthorizationPolicy.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Authorization/Policies/ValidSchemeAuthorizationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Authorization/Policies/ValidSchemeAuthorizationPolicy.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Authorization/Requirements/ActiveApiPluginRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Authorization/Requirements/ActiveApiPluginRequirement.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Authorization/Requirements/AuthorizationSchemeRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Authorization/Requirements/AuthorizationSchemeRequirement.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Authorization/Requirements/CustomerRoleRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Authorization/Requirements/CustomerRoleRequirement.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/AutoMapper/ApiMapperConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/AutoMapper/ApiMapperConfiguration.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/AutoMapper/AutoMapperApiConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/AutoMapper/AutoMapperApiConfiguration.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Configuration/ApiConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Configuration/ApiConfiguration.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Configuration/ApplicationPartsLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Configuration/ApplicationPartsLogger.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/BaseApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/BaseApiController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/CountriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/CountriesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/CurrenciesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/CurrenciesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/CustomerRolesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/CustomerRolesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/LanguagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/LanguagesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ManufacturersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ManufacturersController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/NewsLetterSubscriptionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/NewsLetterSubscriptionController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/OrderItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/OrderItemsController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ProductAttributesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ProductAttributesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ProductCategoryMappingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ProductCategoryMappingsController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ProductManufacturerMappingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ProductManufacturerMappingsController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ProductSpecificationAttributesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ProductSpecificationAttributesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ProductWarehouseInventoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ProductWarehouseInventoryController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/ShoppingCartItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/ShoppingCartItemsController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/SpecificationAttributesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/SpecificationAttributesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/StateProvincesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/StateProvincesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/StoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/StoreController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/TaxesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/TaxesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/TokenController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/TopicsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/TopicsController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Controllers/WarehousesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Controllers/WarehousesController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Converters/ApiTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Converters/ApiTypeConverter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Converters/IApiTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Converters/IApiTypeConverter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Converters/IObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Converters/IObjectConverter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Converters/ObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Converters/ObjectConverter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/AddressDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/AddressDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Base/BaseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Base/BaseDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/BinaryFileDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/BinaryFileDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Categories/CategoriesCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Categories/CategoriesCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Categories/CategoriesRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Categories/CategoriesRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Categories/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Categories/CategoryDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/CountriesRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/CountriesRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/CountryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/CountryDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/CurrenciesRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/CurrenciesRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/CurrencyDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/CurrencyDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/CustomerRoles/CustomerRoleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/CustomerRoles/CustomerRoleDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/CustomerRoles/CustomerRolesRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/CustomerRoles/CustomerRolesRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Customers/BaseCustomerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Customers/BaseCustomerDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Customers/CustomerAttributeMappingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Customers/CustomerAttributeMappingDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Customers/CustomerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Customers/CustomerDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Customers/CustomersCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Customers/CustomersCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Customers/CustomersRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Customers/CustomersRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Errors/ErrorsRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Errors/ErrorsRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ISerializableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ISerializableObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Images/ImageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Images/ImageDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Images/ImageMappingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Images/ImageMappingDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Languages/LanguageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Languages/LanguageDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Languages/LanguagesRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Languages/LanguagesRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Languages/LocalizedNameDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Languages/LocalizedNameDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Manufacturers/DiscountManufacturerMappingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Manufacturers/DiscountManufacturerMappingDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Manufacturers/ManufacturerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Manufacturers/ManufacturerDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Manufacturers/ManufacturersCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Manufacturers/ManufacturersCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Manufacturers/ManufacturersRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Manufacturers/ManufacturersRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/NewsLetterSubscriptions/NewsLetterSubscriptionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/NewsLetterSubscriptions/NewsLetterSubscriptionDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/NewsLetterSubscriptions/NewsLetterSubscriptionsRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/NewsLetterSubscriptions/NewsLetterSubscriptionsRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/OrderItems/OrderItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/OrderItems/OrderItemDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/OrderItems/OrderItemsCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/OrderItems/OrderItemsCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/OrderItems/OrderItemsRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/OrderItems/OrderItemsRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Orders/OrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Orders/OrderDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Orders/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Orders/OrderStatus.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Orders/OrdersCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Orders/OrdersCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Orders/OrdersRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Orders/OrdersRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Orders/PaymentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Orders/PaymentStatus.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Orders/ShippingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Orders/ShippingStatus.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Orders/SingleOrderRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Orders/SingleOrderRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductAttributes/ProductAttributeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductAttributes/ProductAttributeDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductAttributes/ProductAttributesCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductAttributes/ProductAttributesCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductAttributes/ProductAttributesRootObjectDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductAttributes/ProductAttributesRootObjectDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductCategoryMappings/ProductCategoryMappingsCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductCategoryMappings/ProductCategoryMappingsCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductCategoryMappings/ProductCategoryMappingsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductCategoryMappings/ProductCategoryMappingsDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductCategoryMappings/ProductCategoryMappingsRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductCategoryMappings/ProductCategoryMappingsRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductItemAttributeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductItemAttributeDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductManufacturerMappings/ProductManufacturerMappingsCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductManufacturerMappings/ProductManufacturerMappingsCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductManufacturerMappings/ProductManufacturerMappingsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductManufacturerMappings/ProductManufacturerMappingsDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductManufacturerMappings/ProductManufacturerMappingsRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductManufacturerMappings/ProductManufacturerMappingsRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductWarehouseIventories/ProductWarehouseInventoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductWarehouseIventories/ProductWarehouseInventoryDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ProductWarehouseIventories/ProductWarehouseInventoryRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ProductWarehouseIventories/ProductWarehouseInventoryRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Products/ProductAttributeCombinationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Products/ProductAttributeCombinationDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Products/ProductAttributeMappingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Products/ProductAttributeMappingDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Products/ProductAttributeValueDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Products/ProductAttributeValueDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Products/ProductCategoriesRootObjectDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Products/ProductCategoriesRootObjectDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Products/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Products/ProductDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Products/ProductsCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Products/ProductsCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Products/ProductsRootObjectDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Products/ProductsRootObjectDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ShoppingCarts/ShoppingCartItemDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ShoppingCarts/ShoppingCartItemDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ShoppingCarts/ShoppingCartItemsRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ShoppingCarts/ShoppingCartItemsRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/ShoppingCarts/ShoppingCartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/ShoppingCarts/ShoppingCartType.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/SpecificationAttributes/ProductSpecificationAttributeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/SpecificationAttributes/ProductSpecificationAttributeDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/SpecificationAttributes/ProductSpecificationAttributesCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/SpecificationAttributes/ProductSpecificationAttributesCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/SpecificationAttributes/ProductSpecificationAttributesRootObjectDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/SpecificationAttributes/ProductSpecificationAttributesRootObjectDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributeDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributeOptionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributeOptionDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributesCountRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributesCountRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributesRootObjectDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/SpecificationAttributes/SpecificationAttributesRootObjectDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/StateProvinces/StateProvinceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/StateProvinces/StateProvinceDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/StateProvinces/StateProvincesRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/StateProvinces/StateProvincesRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Stores/StoreDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Stores/StoreDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Stores/StoresRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Stores/StoresRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Taxes/TaxCategoriesRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Taxes/TaxCategoriesRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Taxes/TaxCategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Taxes/TaxCategoryDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Topics/TopicDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Topics/TopicDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Topics/TopicsRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Topics/TopicsRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Warehouses/WarehouseRootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Warehouses/WarehouseRootObject.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DTOs/Warehouses/WarehousesDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DTOs/Warehouses/WarehousesDto.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/DataStructures/ApiList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/DataStructures/ApiList.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Delta/Delta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Delta/Delta.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Domain/ApiSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Domain/ApiSettings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/AddressFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/AddressFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/CategoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/CategoryFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/CustomerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/CustomerFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/IFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/IFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/ManufacturerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/ManufacturerFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/OrderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/OrderFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/ProductFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/ProductFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/ShoppingCartItemFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/ShoppingCartItemFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/TopicFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/TopicFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Factories/WarehouseFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Factories/WarehouseFactory.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/CustomerRolesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/CustomerRolesHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/DTOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/DTOHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/ICustomerRolesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/ICustomerRolesHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/IDTOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/IDTOHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/IJsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/IJsonHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/IMappingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/IMappingHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/JTokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/JTokenHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/JsonHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/MappingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/MappingHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Helpers/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Helpers/ReflectionHelper.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Infrastructure/ApiPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Infrastructure/ApiPlugin.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Infrastructure/ApiStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Infrastructure/ApiStartup.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Infrastructure/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Infrastructure/Constants.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Infrastructure/DependencyRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Infrastructure/DependencyRegister.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/JSON/ActionResults/ErrorActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/JSON/ActionResults/ErrorActionResult.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/JSON/ActionResults/RawJsonActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/JSON/ActionResults/RawJsonActionResult.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/JSON/Serializers/IJsonFieldsSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/JSON/Serializers/IJsonFieldsSerializer.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/JSON/Serializers/JsonFieldsSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/JSON/Serializers/JsonFieldsSerializer.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/AddressDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/AddressDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/BaseMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/BaseMapping.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/CategoryDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/CategoryDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ConfigurationMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ConfigurationMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/CountryDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/CountryDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/CurrencyDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/CurrencyDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/CustomerDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/CustomerDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/CustomerRoleDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/CustomerRoleDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/LanguageDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/LanguageDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ManufacturerDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ManufacturerDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/NewsLetterSubscriptoonDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/NewsLetterSubscriptoonDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/OrderDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/OrderDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/OrderItemDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/OrderItemDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ProductAttributeCombinationDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ProductAttributeCombinationDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ProductAttributeDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ProductAttributeDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ProductCategoryMappingDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ProductCategoryMappingDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ProductDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ProductDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ProductManufacturerMappingDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ProductManufacturerMappingDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ProductWarehouseInventoryDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ProductWarehouseInventoryDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/ShoppingCartItemDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/ShoppingCartItemDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/SpecificationAttributeDtoMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/SpecificationAttributeDtoMapping.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/StateProvinceDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/StateProvinceDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/StoreDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/StoreDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/TaxCategoryDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/TaxCategoryDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/TopicDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/TopicDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/MappingExtensions/WarehouseDtoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/MappingExtensions/WarehouseDtoMappings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Maps/IJsonPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Maps/IJsonPropertyMap.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Maps/JsonPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Maps/JsonPropertyMap.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/ModelBinders/JsonModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/ModelBinders/JsonModelBinder.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/ModelBinders/JsonQueryModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/ModelBinders/JsonQueryModelBinder.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/ModelBinders/ParametersModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/ModelBinders/ParametersModelBinder.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/Authentication/TokenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/Authentication/TokenRequest.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/Authentication/TokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/Authentication/TokenResponse.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/CategoriesParameters/BaseCategoriesParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/CategoriesParameters/BaseCategoriesParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/CategoriesParameters/CategoriesCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/CategoriesParameters/CategoriesCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/CategoriesParameters/CategoriesParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/CategoriesParameters/CategoriesParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/CustomersParameters/CustomersParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/CustomersParameters/CustomersParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/CustomersParameters/CustomersSearchParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/CustomersParameters/CustomersSearchParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/DefaultWebApiErrorsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/DefaultWebApiErrorsModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ManufacturersParameters/BaseManufacturersParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ManufacturersParameters/BaseManufacturersParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ManufacturersParameters/ManufacturersCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ManufacturersParameters/ManufacturersCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ManufacturersParameters/ManufacturersParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ManufacturersParameters/ManufacturersParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/NewsLetterSubscriptionsParameters/NewsLetterSubscriptionsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/NewsLetterSubscriptionsParameters/NewsLetterSubscriptionsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/OrderItemsParameters/OrderItemsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/OrderItemsParameters/OrderItemsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/OrdersParameters/BaseOrdersParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/OrdersParameters/BaseOrdersParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/OrdersParameters/OrdersCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/OrdersParameters/OrdersCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/OrdersParameters/OrdersParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/OrdersParameters/OrdersParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductAttributesParameters/ProductAttributesParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductAttributesParameters/ProductAttributesParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductCategoryMappingsParameters/BaseCategoryMappingsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductCategoryMappingsParameters/BaseCategoryMappingsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductCategoryMappingsParameters/ProductCategoryMappingsCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductCategoryMappingsParameters/ProductCategoryMappingsCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductCategoryMappingsParameters/ProductCategoryMappingsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductCategoryMappingsParameters/ProductCategoryMappingsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductManufacturerMappingsParameters/BaseManufacturerMappingsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductManufacturerMappingsParameters/BaseManufacturerMappingsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductManufacturerMappingsParameters/ProductManufacturerMappingsCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductManufacturerMappingsParameters/ProductManufacturerMappingsCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductManufacturerMappingsParameters/ProductManufacturerMappingsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductManufacturerMappingsParameters/ProductManufacturerMappingsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductSpecificationAttributesParameters/ProductSpecificationAttributesCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductSpecificationAttributesParameters/ProductSpecificationAttributesCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductSpecificationAttributesParameters/ProductSpecificationAttributesParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductSpecificationAttributesParameters/ProductSpecificationAttributesParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductWarehouseInventoryParameters/ProductWarehouseInventoryParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductWarehouseInventoryParameters/ProductWarehouseInventoryParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductsParameters/BaseProductsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductsParameters/BaseProductsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductsParameters/ProductCategoriesParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductsParameters/ProductCategoriesParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductsParameters/ProductsCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductsParameters/ProductsCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ProductsParameters/ProductsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ProductsParameters/ProductsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ShoppingCartsParameters/ShoppingCartItemsCreateParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ShoppingCartsParameters/ShoppingCartItemsCreateParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ShoppingCartsParameters/ShoppingCartItemsDeleteParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ShoppingCartsParameters/ShoppingCartItemsDeleteParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/ShoppingCartsParameters/ShoppingCartItemsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/ShoppingCartsParameters/ShoppingCartItemsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/SpecificationAttributesParameters/SpecificationAttributesCountParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/SpecificationAttributesParameters/SpecificationAttributesCountParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/SpecificationAttributesParameters/SpecificationAttributesParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/SpecificationAttributesParameters/SpecificationAttributesParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/TopicsParameters/TopicsParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/TopicsParameters/TopicsParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Models/WarehouseParameters/WarehousesParametersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Models/WarehouseParameters/WarehousesParametersModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Nop.Plugin.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Nop.Plugin.Api.csproj -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/AddressApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/AddressApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/BearerTokenAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/BearerTokenAuthenticationService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/BearerTokenOrCookieAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/BearerTokenOrCookieAuthenticationService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/CategoryApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/CategoryApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/CustomerApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/CustomerApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IAddressApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IAddressApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ICategoryApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ICategoryApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ICustomerApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ICustomerApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IManufacturerApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IManufacturerApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/INewsLetterSubscriptionApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/INewsLetterSubscriptionApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IOrderApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IOrderApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IOrderItemApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IOrderItemApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IProductApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IProductApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IProductAttributeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IProductAttributeConverter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IProductAttributesApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IProductAttributesApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IProductCategoryMappingsApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IProductCategoryMappingsApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IProductManufacturerMappingsApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IProductManufacturerMappingsApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IProductPictureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IProductPictureService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IProductWarehouseInventoriesApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IProductWarehouseInventoriesApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IShoppingCartItemApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IShoppingCartItemApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ISpecificationAttributeApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ISpecificationAttributeApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/IWarehouseApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/IWarehouseApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ManufacturerApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ManufacturerApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/NewsLetterSubscriptionApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/NewsLetterSubscriptionApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/OrderApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/OrderApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/OrderItemApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/OrderItemApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ProductApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ProductApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ProductAttributeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ProductAttributeConverter.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ProductAttributesApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ProductAttributesApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ProductCategoryMappingsApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ProductCategoryMappingsApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ProductManufacturerMappingsApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ProductManufacturerMappingsApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ProductPictureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ProductPictureService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ProductWarehouseInventoriesApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ProductWarehouseInventoriesApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/ShoppingCartItemApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/ShoppingCartItemApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/SpecificationAttributesApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/SpecificationAttributesApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/WarehouseApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/WarehouseApiService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Services/WebApiStoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Services/WebApiStoreContext.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/AddressDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/AddressDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/BaseDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/BaseDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/CategoryDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/CategoryDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/CustomerDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/CustomerDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/FieldsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/FieldsValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/IFieldsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/IFieldsValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ManufacturerDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ManufacturerDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/OrderDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/OrderDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/OrderItemDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/OrderItemDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ProductAttributeCombinationDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ProductAttributeCombinationDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ProductAttributeDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ProductAttributeDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ProductCategoryMappingDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ProductCategoryMappingDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ProductDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ProductDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ProductManufacturerMappingDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ProductManufacturerMappingDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ProductSpecificationAttributeDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ProductSpecificationAttributeDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/ShoppingCartItemDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/ShoppingCartItemDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/SpecificationAttributeDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/SpecificationAttributeDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/SpecificationAttributeOptionDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/SpecificationAttributeOptionDtoValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/Validators/TypeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/Validators/TypeValidator.cs -------------------------------------------------------------------------------- /Nop.Plugin.Api/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/logo.jpg -------------------------------------------------------------------------------- /Nop.Plugin.Api/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Nop.Plugin.Api/plugin.json -------------------------------------------------------------------------------- /OrderItems.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Orders.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ProductCategoryMappings.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/Products.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/README.md -------------------------------------------------------------------------------- /ShoppingCartItems.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WebHooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/WebHooks.md -------------------------------------------------------------------------------- /api-for-nopcommerce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/api-for-nopcommerce.sln -------------------------------------------------------------------------------- /appsettings-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/appsettings-docker.json -------------------------------------------------------------------------------- /plugins-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/plugins-docker.json -------------------------------------------------------------------------------- /uploadedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanbenes/api-for-nopcommerce/HEAD/uploadedItems.json --------------------------------------------------------------------------------