コード例 #1
0
 public BaseRepository(DemoContext context)
 {
     _context = context;
 }
コード例 #2
0
 public UnitOfWork()
 {
     _context = new DemoContext();
     _context.User = new Common.User();
 }
コード例 #3
0
 public ContactRepository(DemoContext _context)
     : base(_context)
 {
 }
コード例 #4
0
 internal MemberRepository(DemoContext _context)
     : base(_context)
 {
 }
コード例 #5
0
 internal StateRepository(DemoContext _context)
     : base(_context)
 {
 }