IFullAuditEntity.cs 495 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace MTWorkHR.Core.Entities.Base
  9. {
  10. public interface IFullAuditEntity : IAuditEntity, IFullAudit
  11. {
  12. }
  13. public interface IFullAuditEntity<TKey> : IAuditEntity<TKey>, IFullAudit
  14. {
  15. }
  16. public interface IFullAudit : ISoftDelete, IAudit
  17. {
  18. }
  19. }