21 lines
454 B
C#
21 lines
454 B
C#
|
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})";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|