//Audit Trail methods //Evaluates Initialize when->Reading record formulas specified at the data access layer protected virtual void TrapNotesRecord_ReadRecord(Object sender, System.EventArgs e) { //Apply Initialize->Reading record formula only if validation is successful. TrapNotesRecord TrapNotesRec = (TrapNotesRecord)sender; if (TrapNotesRec != null && !TrapNotesRec.IsReadOnly) { } }
//Evaluates Initialize when->Updating formulas specified at the data access layer protected virtual void TrapNotesRecord_UpdatingRecord(Object sender, System.ComponentModel.CancelEventArgs e) { //Apply Initialize->Updating formula only if validation is successful. TrapNotesRecord TrapNotesRec = (TrapNotesRecord)sender; Validate_Updating(); if (TrapNotesRec != null && !TrapNotesRec.IsReadOnly) { TrapNotesRec.Parse(EvaluateFormula("UserID()", this, null), TrapNotesTable.UpdatedBy); TrapNotesRec.Parse(EvaluateFormula("Today()", this, null), TrapNotesTable.UpdatedOn); } }
/// <summary> /// This is a shared function that can be used to get a TrapNotesRecord record using a where and order by clause. /// </summary> public static TrapNotesRecord GetRecord(BaseFilter join, string where, OrderBy orderBy) { SqlFilter whereFilter = null; if (where != null && where.Trim() != "") { whereFilter = new SqlFilter(where); } ArrayList recList = TrapNotesTable.Instance.GetRecordList(join, whereFilter, null, orderBy, BaseTable.MIN_PAGE_NUMBER, BaseTable.MIN_BATCH_SIZE); TrapNotesRecord rec = null; if (recList.Count > 0) { rec = (TrapNotesRecord)recList[0]; } return(rec); }