Kaffeplaneten.BLL.ProductBLL.add C# (CSharp) Method

add() public method

public add ( ProductModel productModel ) : bool
productModel Kaffeplaneten.Models.ProductModel
return bool
        public bool add(ProductModel productModel)
        {
            return _productDAL.add(productModel);
        }

Usage Example

Example #1
0
 public static void addProduct(ProductModel productModel)
 {
     var temp = new ProductBLL();
     temp.add(productModel);
 }