using System; using System.Collections.Generic; using System.Text; namespace Church.Net.Entity.Interface { public interface IEntity { string Id { get; set; } } public interface ICombinedKeyEntity { } public interface IBussinessEntity { Guid Id { get; set; } } }