public async Task Create(Boleto boleto) { var IdUser = ((ClaimsIdentity)_httpContextAccessor.HttpContext.User.Identity).FindFirst(ClaimTypes.NameIdentifier).Value; boleto.IdPasajero = IdUser; await _terminalBusContext.Boletos.AddAsync(boleto); await _terminalBusContext.SaveChangesAsync(); }
public async Task Create(Bus bus) { await _terminalBusContext.Buses.AddAsync(bus); await _terminalBusContext.SaveChangesAsync(); }
public async Task Create(Viaje viaje) { await _terminalBusContext.Viajes.AddAsync(viaje); await _terminalBusContext.SaveChangesAsync(); }