private void detach_DetalleReferenciasPrestamos(DetalleReferenciasPrestamo entity)
		{
			this.SendPropertyChanging();
			entity.Referencia = null;
		}
		private void attach_DetalleReferenciasPrestamos(DetalleReferenciasPrestamo entity)
		{
			this.SendPropertyChanging();
			entity.Prestamo = this;
		}
 partial void DeleteDetalleReferenciasPrestamo(DetalleReferenciasPrestamo instance);
 partial void UpdateDetalleReferenciasPrestamo(DetalleReferenciasPrestamo instance);
 partial void InsertDetalleReferenciasPrestamo(DetalleReferenciasPrestamo instance);
        private void GuardarReferencias(int cveprestamos)
        {
            for (int i = 0; i < _dtReferencias.Rows.Count; i++)
            {
                DetalleReferenciasPrestamo dtRef = new DetalleReferenciasPrestamo
                {
                    CvePrestamo = cveprestamos,
                    CveReferencia = (int)_dtReferencias.Rows[i][0],
                };
                _entidades.DetalleReferenciasPrestamos.InsertOnSubmit(dtRef);

            }
            _entidades.SubmitChanges();
        }