1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Repository
- {
- public interface IRepositoryBaseById<T, TId>
- {
-
- Task<T> GetByIdAsync(TId id);
-
- Task<bool> IsExistAsync(TId id);
-
-
-
-
-
- Task<bool> DeleteAsync(TId id);
- }
- }
|