Exemplo n.º 1
0
 protected void btnYes_Click(object sender, EventArgs e)
 {
     try
     {
         int rowIndex = Convert.ToInt32(ViewState["unit_id"]);
         context.sp_DeleteTax(companyId, branchId, rowIndex);
         clr();
         divalert.Visible = true;
         lblAlert.Text    = "Tax Deleted Successfully ";
         loadDataTable();
     }
     catch (Exception ex)
     {
         ErrorLog.saveerror(ex);
         //Do Logging
     }
 }
Exemplo n.º 2
0
 protected void btnYes_Click(object sender, EventArgs e)
 {
     try
     {
         int rowIndex = Convert.ToInt32(ViewState["rowIndex"]);
         context.sp_DeleteTax(companyId, branchId, rowIndex);
         var taxType = context.tbl_taxtype.SingleOrDefault(t => t.type_id == rowIndex);
         if (taxType != null)
         {
             taxType.status = false;
             context.SaveChanges();
         }
         divalert.Visible = true;
         lblAlert.Text    = "Tax Deleted Successfully ";
         loadDataTable();
     }
     catch (Exception ex)
     {
         ErrorLog.saveerror(ex);
         //Do Logging
     }
 }