示例#1
0
 public int AddProduct(Product or)
 {
     _Proservice = new ProductService();
     if (_Proservice.Add(or) == 1)
         return 1;
     else
         return 0;
 }