Example #1
0
 private void btnSaveAddress_Click(object sender, EventArgs e)
 {
     try
     {
         ParseSupplierAddressDetails();
         if (ObjBSupplier == null)
         {
             ObjBSupplier = new BSupplier();
         }
         _ObjEsupplier = ObjBSupplier.SaveSupplierAddressDetails(_ObjEsupplier);
         this.Close();
     }
     catch (Exception ex) { Utility.ShowError(ex); }
 }