示例#1
0
 /// <summary>
 /// Code to save new article with existsing proposal
 /// </summary>
 /// <param name="ObjESupplier"></param>
 /// <returns></returns>
 public ESupplier SupplierProposalMerge(ESupplier ObjESupplier)
 {
     try
     {
         if (ObjDSupplier == null)
         {
             ObjDSupplier = new DSupplier();
         }
         ObjDSupplier.SupplierProposalMerge(ObjESupplier);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return(ObjESupplier);
 }