コード例 #1
0
 public UsersController(IUserService userService, EDMContext context)
 {
     _userService = userService;
     _context     = context;
 }
コード例 #2
0
 public GenericRepository(EDMContext context)
 {
     this._context = context;
     table         = _context.Set <T>();
 }
コード例 #3
0
 public UnitOfWork(EDMContext context)
 {
     _context = context;
 }