Skip to content

Commit

Permalink
fix: hepsiburada namespace fix
Browse files Browse the repository at this point in the history
  • Loading branch information
onurkanbakirci committed Dec 21, 2023
1 parent 181776b commit ffd7929
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ dotnet add package Integration.Marketplaces.Hepsiburada --version 1.0.0
```

```c#
using Integration.Marketplaces.Hepsiburada.Infrastructure.ProductIntegration;

var hepsiburadaProductIntegration = new HepsiburadaProductIntegration(
username: "username",
password: "password",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
var hepsiburadaProductIntegration = new HepsiburadaProductIntegration(
using Integration.Marketplaces.Hepsiburada.Infrastructure.ProductIntegration;

var hepsiburadaProductIntegration = new HepsiburadaProductIntegration(
username: "username",
password: "password",
isInProduction: false);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using Integration.Core;
using Integration.Marketplaces.Hepsiburada.Infrastructure.ProductIntegration;
using Integration.Marketplaces.Hepsiburada.Infrastructure.ProductIntegration.Models.Response;
using Integration.Marketplaces.Trendyol.Infrastructure;

namespace Integration.Marketplaces.Hepsiburada.Infrastructure.ProductIntegration;

public class HepsiburadaProductIntegration : HepsiburadaIntegrationBase, IHepsiburadaProductIntegration, IMarketplaceIntegration
{
private string GetCategoriesUrl() => $"{GetBaseUrl}product/api/categories/get-all-categories";
Expand Down

0 comments on commit ffd7929

Please sign in to comment.