diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-12-23 21:20:41 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-12-23 21:20:41 +0300 |
commit | 755d556f097789f662c43902f5fb59d40138a6f8 (patch) | |
tree | 3a86ab5cef37d899af84aaad59d1d7d586b6cdf8 /src/Models/SourcePriceList.cs | |
parent | 0ccbf29382b43d19f7ea0d1f4b5841149137842d (diff) |
Delete SkuExtensions class
Diffstat (limited to 'src/Models/SourcePriceList.cs')
-rw-r--r-- | src/Models/SourcePriceList.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Models/SourcePriceList.cs b/src/Models/SourcePriceList.cs index d210c10..ed860b4 100644 --- a/src/Models/SourcePriceList.cs +++ b/src/Models/SourcePriceList.cs @@ -87,7 +87,7 @@ namespace RhSolutions.Models if (group == null || name == null || sku == null) continue; - if (!sku.ToString().IsRehauSku()) + if (!Sku.TryParse(sku.ToString(), out _)) continue; Product p = new Product |