コード例 #1
0
ファイル: UnitOfWork.cs プロジェクト: MinchMeister/MVC5-Ref
 public UnitOfWork(SiteContext context)
 {
     _context             = context;
     PersonInfoRepository = new PersonInfoRepository(_context);
 }
コード例 #2
0
 public PersonInfoRepository(SiteContext context) : base(context)
 {
 }