Beispiel #1
0
 /// <summary>
 /// Code fetch positions from database for not saved supplier propsoal by passing ProjectID, LVSection, Articles as imput parameters
 /// </summary>
 /// <param name="ObjESupplier"></param>
 /// <returns></returns>
 public ESupplier GetPositionsforsupplierProposal(ESupplier ObjESupplier)
 {
     try
     {
         if (ObjDSupplier == null)
         {
             ObjDSupplier = new DSupplier();
         }
         ObjDSupplier.GetPositionsforsupplierProposal(ObjESupplier);
     }
     catch (Exception ex) { throw ex; }
     return(ObjESupplier);
 }