d254873172
- HrynCo.DAL.Abstract: IEntity<TId>, Entity base classes, ITransaction, IUnitOfWork - HrynCo.DAL.EF: EfRepository<TDbContext,TEntity>, EfUnitOfWork<TDbContext>, EfTransactionAdapter - Directory.Packages.props with centralized EF Core 9.0.5 versions - TeamCity pipeline YAMLs for general-checks and publish Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
9 lines
202 B
C#
9 lines
202 B
C#
namespace HrynCo.DAL.Abstract.Entities;
|
|
|
|
public interface IEntity<TId> where TId : struct
|
|
{
|
|
TId Id { get; set; }
|
|
DateTimeOffset Created { get; set; }
|
|
DateTimeOffset? Updated { get; set; }
|
|
}
|