aboutsummaryrefslogtreecommitdiff
path: root/Source/Assistant/Product.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Assistant/Product.cs')
-rw-r--r--Source/Assistant/Product.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/Assistant/Product.cs b/Source/Assistant/Product.cs
new file mode 100644
index 0000000..17a7065
--- /dev/null
+++ b/Source/Assistant/Product.cs
@@ -0,0 +1,21 @@
+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