Beispiel #1
0
 /// <summary>
 /// Code to Delete Supplier and article mapping
 /// </summary>
 /// <param name="ObjESupplier"></param>
 /// <returns></returns>
 public ESupplier DeleteSupplierArticleMap(ESupplier ObjESupplier)
 {
     try
     {
         if (ObjDSupplier == null)
         {
             ObjDSupplier = new DSupplier();
         }
         ObjESupplier = ObjDSupplier.DeleteSupplierArticleMap(ObjESupplier);
     }
     catch (Exception ex)
     {
         throw;
     }
     return(ObjESupplier);
 }