public async Task <ActionResult <Maestrafactura> > PostTaskItem(Maestrafactura item)
        {
            _context.Maestrafacturas.Add(item);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetTaskItem), new { id = item.MAESTRO_ID }, item));
        }
        public async Task <ActionResult <Producto> > PostTaskItem(Producto item)
        {
            _context.Productos.Add(item);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetTaskItem), new { id = item.PRODUCTO_ID }, item));
        }
        public async Task <ActionResult <Vendedor> > PostTaskItem(Vendedor item)
        {
            _context.Vendedores.Add(item);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetTaskItem), new { id = item.VENDEDOR_ID }, item));
        }
        public async Task <ActionResult <Cliente> > PostTaskItem(Cliente item)
        {
            _context.Clientes.Add(item);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetTaskItem), new { id = item.CLIENTE_ID }, item));
        }
Esempio n. 5
0
        public async Task <ActionResult <Detallefactura> > PostTaskItem(Detallefactura item)
        {
            _context.Detallefacturas.Add(item);
            await _context.SaveChangesAsync();

            return(CreatedAtAction(nameof(GetTaskItem), new { id = item.DETALLE_ID }, item));
        }
Esempio n. 6
0
        public async Task <ActionResult <Producto> > PostProducto(Producto newProducto)
        {
            var varProducto = await _context.Productos.FindAsync(newProducto.PRODUCTO_ID);

            if (varProducto != null)
            {
                return(NotFound());
            }
            else
            {
                _context.Productos.Add(newProducto);
                await _context.SaveChangesAsync();

                return(CreatedAtAction(nameof(GetProducto), new { id = newProducto.PRODUCTO_ID }, newProducto));
            }
        }
Esempio n. 7
0
        public async Task <ActionResult <Cliente> > PostCliente(Cliente newcliente)
        {
            var varCliente = await _context.Clientes.FindAsync(newcliente.CLIENTE_ID);

            if (varCliente != null)
            {
                return(BadRequest());
            }
            else
            {
                _context.Clientes.Add(newcliente);
                await _context.SaveChangesAsync();

                return(CreatedAtAction(nameof(GetCliente), new { id = newcliente.CLIENTE_ID }, newcliente));
            }
        }
Esempio n. 8
0
        public async Task <ActionResult <FacturaMaestro> > PostCliente(FacturaMaestro newFactura)
        {
            var facturaItem = await _context.FacturaMaestros.FindAsync(newFactura.MAESTRO_ID);

            if (facturaItem != null)
            {
                return(BadRequest());
            }
            else
            {
                _context.FacturaMaestros.Add(newFactura);
                await _context.SaveChangesAsync();

                return(CreatedAtAction(nameof(GetCliente), new { id = newFactura.MAESTRO_ID }, newFactura));
            }
        }
Esempio n. 9
0
        public async Task <ActionResult <Vendedor> > PostVendedor(Vendedor newVendedor)
        {
            var varProducto = await _context.Productos.FindAsync(newVendedor.VENDEDOR_ID);

            if (varProducto != null)
            {
                return(NotFound());
            }
            else
            {
                _context.Vendedores.Add(newVendedor);
                await _context.SaveChangesAsync();

                return(CreatedAtAction(nameof(GetVendedor), new { id = newVendedor.VENDEDOR_ID }, newVendedor));
            }
        }