Beispiel #1
0
 /// <summary>
 /// Code to add new supplier to existing proposal
 /// </summary>
 /// <param name="ObjESupplier"></param>
 /// <returns></returns>
 public ESupplier UpdateSupplierProposal(ESupplier ObjESupplier)
 {
     try
     {
         if (ObjDSupplier == null)
         {
             ObjDSupplier = new DSupplier();
         }
         ObjESupplier = ObjDSupplier.UpdateSupplierProposal(ObjESupplier);
     }
     catch (Exception ex)
     {
         throw;
     }
     return(ObjESupplier);
 }