internal void Insert(OutputInvoice parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } try { parent.Session().Save(Base.Record); } catch (Exception ex) { throw new iQPersistentException(iQExceptionHandler.GetAllMessages(ex)); } MarkOld(); }
internal void Insert(OutputInvoice parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } OidFactura = parent.Oid; try { parent.Session().Save(Base.Record); } catch (Exception ex) { iQExceptionHandler.TreatException(ex); } MarkOld(); }
internal void Insert(OutputInvoice parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } this.OidFactura = parent.Oid; ValidationRules.CheckRules(); if (!IsValid) { throw new iQValidationException(Library.Resources.Messages.GENERIC_VALIDATION_ERROR); } parent.Session().Save(Base.Record); MarkOld(); }