public async Task GuardarTransportadora(Transportadora transportadora) { try { _context.Add(transportadora); await _context.SaveChangesAsync(); } catch (Exception e) { throw e; } }
public async Task GuardarTipoMercancia(TipoMercancia tipoMercancia) { try { _context.Add(tipoMercancia); await _context.SaveChangesAsync(); } catch (Exception e) { throw e; } }
public async Task GuardarCliente(Cliente cliente) { try { _context.Add(cliente); await _context.SaveChangesAsync(); } catch (Exception e) { throw e; } }
public async Task GuardarPaquete(Paquete paquete) { try { if (paquete.ValorAPAgar == 0) { paquete.ValorAPAgar = ((float)(paquete.Peso * 100)); } _context.Add(paquete); await _context.SaveChangesAsync(); paquete.CodigoMIA = ("MIA-" + paquete.PaqueteId); await EditarPaquete(paquete); } catch (Exception e) { Console.WriteLine(e.InnerException.Message); } }