public override string ToString()
 {
     if (BagOfProducts.Count == 0)
     {
         return($"{this.Name} - Nothing bought");
     }
     else
     {
         return($"{this.Name} - {string.Join(", ", BagOfProducts.Select(n => n.Name).ToList())}");
     }
 }