IDao.cs 236 B

12345678910111213
  1. using System;
  2. namespace Quadarax.Foundation.Core.Data.Interface.Entity
  3. {
  4. public interface IDao<TKey> : IDao where TKey : IEquatable<TKey>
  5. {
  6. public TKey Id { get; set; }
  7. }
  8. public interface IDao
  9. {
  10. }
  11. }