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