NullEntityHistoryStore.cs 358 B

1234567891011121314
  1. using System.Threading.Tasks;
  2. namespace Abp.EntityHistory
  3. {
  4. public class NullEntityHistoryStore : IEntityHistoryStore
  5. {
  6. public static NullEntityHistoryStore Instance { get; } = new NullEntityHistoryStore();
  7. public Task SaveAsync(EntityChangeSet entityChangeSet)
  8. {
  9. return Task.CompletedTask;
  10. }
  11. }
  12. }