Beispiel #1
0
 public bool GuardarInventario(
     short IdCompania,
     string sector,
     string Area,
     string Familia,
     string Cliente,
     string articulo,
     string articulodescripcion,
     string boleta,
     System.DateTime Fecha,
     short Permanencia,
     decimal Saldo,
     decimal ventasAnuales,
     decimal Peso,
     decimal Costo,
     string TOKEN,
     ref string Mensaje)
 {
     cSharp.wsTesoreria.GuardarInventarioRequest inValue = new cSharp.wsTesoreria.GuardarInventarioRequest();
     inValue.IdCompania          = IdCompania;
     inValue.sector              = sector;
     inValue.Area                = Area;
     inValue.Familia             = Familia;
     inValue.Cliente             = Cliente;
     inValue.articulo            = articulo;
     inValue.articulodescripcion = articulodescripcion;
     inValue.boleta              = boleta;
     inValue.Fecha               = Fecha;
     inValue.Permanencia         = Permanencia;
     inValue.Saldo               = Saldo;
     inValue.ventasAnuales       = ventasAnuales;
     inValue.Peso                = Peso;
     inValue.Costo               = Costo;
     inValue.TOKEN               = TOKEN;
     inValue.Mensaje             = Mensaje;
     cSharp.wsTesoreria.GuardarInventarioResponse retVal = ((cSharp.wsTesoreria.ITesoreria)(this)).GuardarInventario(inValue);
     Mensaje = retVal.Mensaje;
     return(retVal.GuardarInventarioResult);
 }
Beispiel #2
0
 public System.Threading.Tasks.Task <cSharp.wsTesoreria.GuardarInventarioResponse> GuardarInventarioAsync(cSharp.wsTesoreria.GuardarInventarioRequest request)
 {
     return(base.Channel.GuardarInventarioAsync(request));
 }
Beispiel #3
0
 cSharp.wsTesoreria.GuardarInventarioResponse cSharp.wsTesoreria.ITesoreria.GuardarInventario(cSharp.wsTesoreria.GuardarInventarioRequest request)
 {
     return(base.Channel.GuardarInventario(request));
 }