コード例 #1
0
ファイル: Repository.cs プロジェクト: alibeknow/alseco
 public void Delete(T entity)
 {
     _context.Remove(entity);
     Save();
 }