Example #1
0
 public bool DeliveredBoard(string po, string noteModel, string statusModel, IEnumerable <ProductDelivered> model)
 {
     try
     {
         PoTransactions pt = new PoTransactions(po);
         return(pt.setPoDelivered(po, noteModel, statusModel, model));
     }
     catch (Exception e)
     {
         Log.Error(e);
         return(false);
     }
 }