C# Class Cedar.Framework.AuditTrail.Base.AuditLogProviderBase

This is base class of all concrete audit log provider classes used to retrieve and archive audit log entries.
Show file Open project: Chinaccn/surfboard

Public Methods

Method Description
Archive ( System.DateTime from, System.DateTime till ) : void

Archives the audit log entries.

AuditLogProviderBase ( string name ) : System

Initializes a new instance of the T:Cedar.Framework.AuditTrail.Base.AuditLogProviderBase class.

GetLogDetail ( string tableName, string logID ) : List

Method Details

Archive() public abstract method

Archives the audit log entries.
public abstract Archive ( System.DateTime from, System.DateTime till ) : void
from System.DateTime The time after which the audit log entries is archived.
till System.DateTime The time before which the audit log entries is archived.
return void

AuditLogProviderBase() public method

Initializes a new instance of the T:Cedar.Framework.AuditTrail.Base.AuditLogProviderBase class.
public AuditLogProviderBase ( string name ) : System
name string The provider name.
return System

GetLogDetail() public abstract method

public abstract GetLogDetail ( string tableName, string logID ) : List
tableName string
logID string
return List