예제 #1
0
 public void Load(product product)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public void insert(product product)
 {
     products.Add(product);
 }
예제 #3
0
 public void Update(product product)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 public void Delete(product product)
 {
     products.Remove(product);
 }