18 lines
194 B
C#
18 lines
194 B
C#
using System;
|
|
using SalesCatalog.Model;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Yavsc.Basket
|
|
{
|
|
public class Basket
|
|
{
|
|
public Basket ()
|
|
{
|
|
}
|
|
|
|
public void Add(Product p)
|
|
{
|
|
}
|
|
}
|
|
}
|