Example #1
0
 public void DoUnHold(string invno)
 {
     var ta = new DsInventoryTableAdapters.SALESMAIN1TableAdapter {Connection = {ConnectionString = _constr}};
     ta.DoUnHold(invno);
 }
Example #2
0
 public void DoHold(string sino, string customerid, string customername, decimal sdisc, decimal rounding)
 {
     var ta = new DsInventoryTableAdapters.SALESMAIN1TableAdapter {Connection = {ConnectionString = _constr}};
     ta.DoHold(customerid,customername,sdisc ,rounding,sino);
 }