예제 #1
0
 // DELETE: api/Sellers/5
 public bool Delete(int id)
 {
     return(SellersBLL.DeleteSeller(id));
 }
예제 #2
0
 protected void Button11_Click(object sender, EventArgs e)
 {
     //从seller表中删除该用户
     SellersBLL.DeleteSeller(TextBox5.Text.Trim());
     Label13.Text = "删除成功!";
 }