10 lines
		
	
	
		
			276 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			276 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.Domain.Entities;
 | |
| 
 | |
| namespace Core.Blueprint.DAL.Infrastructure.Contracts
 | |
| {
 | |
|     public interface IRepositoryIdentityBase<T> : IRepositoryBase<T> where T : AbsEntity
 | |
|     {
 | |
|         ValueTask<T> GetByIdAsync(Guid id) => GetByIdAsync(id.ToString());
 | |
|     }
 | |
| }
 | 
