Esempio n. 1
0
        private OrderArtCL checkoutOrderArt(string ident, ReservdelCL res, Decimal coNumber)
        {
            ServHuvSrc.COrderArt coa = new ServHuvSrc.COrderArt();
            OrderArtCL           oa  = new OrderArtCL();

            oa.Artnr       = res.Artnr;
            oa.VartOrdernr = res.VartOrdernr;
            oa.CoAntal     = coNumber;
            oa             = coa.checkoutOrderArt(ident, oa);
            return(oa);
        }
Esempio n. 2
0
 public OrderArtCL checkoutOrderArt(string ident, OrderArtCL oa)
 {
     ServHuvSrc.COrderArt coa = new ServHuvSrc.COrderArt();
     return(coa.checkoutOrderArt(ident, oa));
 }