add() public method

public add ( ProductModel productModel ) : bool
productModel Kaffeplaneten.Models.ProductModel
return bool
コード例 #1
0
 public static void addProduct(ProductModel productModel)
 {
     var temp = new ProductBLL();
     temp.add(productModel);
 }