public async Task <bool> AddCliente(Cliente cliente) { try { if (cliente != null) { await _context.AddAsync(cliente); } _context.SaveChanges(); return(true); }catch (Exception ex) { Console.WriteLine(ex.Message); return(false); } }
public async Task <bool> AddProductoFacturado(ProductoFacturado ProductoFacturado) { try { if (ProductoFacturado != null) { await _context.AddAsync(ProductoFacturado); } _context.SaveChangesAsync(); return(true); } catch (Exception ex) { Console.WriteLine(ex.Message); return(false); } }
public async Task <bool> AddPuntoVenta(PuntoVenta PuntoVenta) { try { if (PuntoVenta != null) { await _context.AddAsync(PuntoVenta); } _context.SaveChangesAsync(); return(true); } catch (Exception ex) { Console.WriteLine(ex.Message); return(false); } }