Exemplo n.º 1
0
        public async Task RegistrarDetalleFacturaUnProductoMinimo([FromBody] DetalleFactura detalleFactura)
        {
            _spContext.Registrar_DetalleFactura_Un_Producto_MinimoAsync(
                detalleFactura.FacturaId, detalleFactura.ProductoId, detalleFactura.Cantidad, detalleFactura.PrecioUnitario);

            await _spContext.SaveChangesAsync();
        }