private PrestamoListDto ConstruirPrestamoListDto(SqlDataReader reader)
        {
            PrestamoListDto prestamoDto = new PrestamoListDto();

            prestamoDto.PrestamoId    = reader.GetInt32(0);
            prestamoDto.NombreSocio   = reader.GetString(1);
            prestamoDto.ApellidoSocio = reader.GetString(2);
            prestamoDto.FechaPrestamo = reader.GetDateTime(3);
            prestamoDto.ItemsPrestamo = _repositorioDetalles.GetLista(reader.GetInt32(0));
            //si anda mal puede ser esto de aca 1 renglon arriba

            return(prestamoDto);
        }
 public List <DetallePrestamoListDto> GetDetalle(int detalleDtoPrestamoId)
 {
     try
     {
         _conexionBd         = new ConexionBd();
         _repositorioDetalle = new RepositorioDetallePrestamos(_conexionBd.AbrirConexion());
         var lista = _repositorioDetalle.GetLista(detalleDtoPrestamoId);
         _conexionBd.CerrarConexion();
         return(lista);
     }
     catch (Exception e)
     {
         throw new Exception(e.Message);
     }
 }