using Core.Blueprint.Domain.Entities; namespace Core.Blueprint.DAL.Infrastructure.Contracts { public interface IRepositoryIdentityBase : IRepositoryBase where T : AbsEntity { ValueTask GetByIdAsync(Guid id) => GetByIdAsync(id.ToString()); } }