aboutsummaryrefslogtreecommitdiff
path: root/src/Assistant/Product.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2021-11-29 21:24:44 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2021-11-29 21:24:44 +0300
commit3ea18ae25e98527aa85835c9221ea01b36560b33 (patch)
treeca5ffb4f60b1c1b683e9094cec44d9431d3d1bb6 /src/Assistant/Product.cs
parentf3b6bfcd3e13519f648c3975d19b8f1d48130059 (diff)
Add Uri Converter
Diffstat (limited to 'src/Assistant/Product.cs')
-rw-r--r--src/Assistant/Product.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Assistant/Product.cs b/src/Assistant/Product.cs
deleted file mode 100644
index 17a7065..0000000
--- a/src/Assistant/Product.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace Rehau.Sku.Assist
-{
- public class Product : IProduct
- {
- public string Sku { get; }
- public string Name { get; }
-
- public string Uri => throw new System.NotImplementedException();
-
- public Product(string sku, string name)
- {
- Sku = sku;
- Name = name;
- }
-
- public override string ToString()
- {
- return $"{this.Name} ({this.Sku})";
- }
- }
-} \ No newline at end of file