public Product FindProductByID(Int32 id)
 {
     ProductBL bl = new ProductBL();
     return bl.GetProduct(id);
 }