diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-01-27 17:34:03 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-01-27 17:34:03 +0300 |
commit | 935d48fc5fe264218b39b335e1fc5232af5dae61 (patch) | |
tree | eb4f7aad791c71a103416ffa59cabb1ad0cb9ee1 /src/PriceListTools/PriceListPosition.cs | |
parent | 72ac236b15603e84f18ec346749186b6cb2c2bdf (diff) |
Complete tools refactoring
Diffstat (limited to 'src/PriceListTools/PriceListPosition.cs')
-rw-r--r-- | src/PriceListTools/PriceListPosition.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/PriceListTools/PriceListPosition.cs b/src/PriceListTools/PriceListPosition.cs deleted file mode 100644 index 30be153..0000000 --- a/src/PriceListTools/PriceListPosition.cs +++ /dev/null @@ -1,23 +0,0 @@ -using RehauSku.Assistant; -using System; - -namespace RehauSku.PriceListTools -{ - internal class PriceListPosition - { - public readonly string Group; - public readonly string Sku; - - public PriceListPosition(string group, string sku) - { - if (!sku.IsRehauSku()) - throw new ArgumentException("Wrong SKU"); - - else - { - Group = group; - Sku = sku; - } - } - } -} |