예제 #1
0
파일: GenericRepo.cs 프로젝트: Oli-Pal/TIIM
 public async Task AddAsync(T entity, CancellationToken cancellationToken = default)
 {
     await _dataContext.AddAsync <T>(entity, cancellationToken);
 }