Exemple #1
0
    protected void RemoveRow(int index)
    {
        Label  r        = (Label)gvForStationeryCatalogue.Rows[index].FindControl("LblItemCode");
        string itemCode = r.Text;

        EFBroker_Item.RemoveItem(itemCode);
        Utility.DisplayAlertMessage(Message.DeleteSuccessful);
        return;
    }
Exemple #2
0
 public static void RemoveItem(string itemCode)
 {
     EFBroker_Item.RemoveItem(itemCode);
     return;
 }