IAuditInfoProvider.cs 410 B

1234567891011121314
  1. namespace Abp.Auditing
  2. {
  3. /// <summary>
  4. /// Provides an interface to provide audit informations in the upper layers.
  5. /// </summary>
  6. public interface IAuditInfoProvider
  7. {
  8. /// <summary>
  9. /// Called to fill needed properties.
  10. /// </summary>
  11. /// <param name="auditInfo">Audit info that is partially filled</param>
  12. void Fill(AuditInfo auditInfo);
  13. }
  14. }