Interface ITrackingService
Contains the methods that implement the business logic
Inherited Members
Namespace: Simplic.Tracking
Assembly: Simplic.Tracking.dll
Syntax
public interface ITrackingService : ITrackingRepository
Methods
| Improve this Doc View SourceTrackChanges(Object, Object, String, Guid)
Compares the values of the properties of 2 objects with the same type. For each value that is different a new tracking entry is made.
Declaration
void TrackChanges(object oldObj, object newObj, string tableName, Guid instanceDataGuid)
Parameters
Type | Name | Description |
---|---|---|
System.Object | oldObj | the old Object to compare |
System.Object | newObj | the new Object to compare |
System.String | tableName | database tablename of the objects |
System.Guid | instanceDataGuid | Guid of the data record |