コード例 #1
0
 public void Delete(T entity)
 {
     _context.Remove(entity);
 }
コード例 #2
0
ファイル: ProAgilRepository.cs プロジェクト: phjb/ProAgil
 public void Delete <T>(T entity) where T : class
 {
     _context.Remove(entity);
 }
コード例 #3
0
 public void Delete(T entity)
 {
     proAgilContext.Remove(entity);
 }