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