Add project files.
This commit is contained in:
		| @@ -0,0 +1,11 @@ | ||||
| namespace Core.Blueprint.DAL.Infrastructure.Contracts | ||||
| { | ||||
|     public interface IRepositoryBase<T> where T : class | ||||
|     { | ||||
|         ValueTask<T> GetByIdAsync(string id); | ||||
|         ValueTask<IQueryable<T>> GetAllAsync(); | ||||
|         ValueTask<T> CreateAsync(T blueprint); | ||||
|         Task<bool> UpdateAsync(string id, T blueprint); | ||||
|         Task<bool> DeleteAsync(string id); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin