aboutsummaryrefslogtreecommitdiff
path: root/Source/Assistant/Product.cs
blob: 17a706515290d57e1398a7a676d01612327def88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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})";
        }
    }
}