Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 1234567891011 |
- namespace Diligent.WebAPI.Business.Interfaces
- {
- public interface IBaseRepository<TEntity> where TEntity : class
- {
- Task<List<TEntity>> GetAsync();
- Task<TEntity> GetByIdAsync(string id);
- Task CreateAsync(TEntity entity);
- Task UpdateAsync(string id, TEntity updateEntity);
- Task RemoveAsync(string id);
- }
- }
|