public string DeleteProduct(string id)
 {
     ProductOperation productOperation = new ProductOperation();
     string result = productOperation.DeleteProduct(Convert.ToInt32(id));
     return result;
 }