コード例 #1
0
 // GET: /Admin/ProductType/
 public SupportController(ISupportRepository _supportRepository,
     ISupportTypeRepository _supportTypeRepository)
 {
     this.baseRepository = _supportRepository;
     this.supportRepository = _supportRepository;
     this.supportTypeRepository = _supportTypeRepository;
 }
コード例 #2
0
        // GET: /Admin/ProductType/

        public SupportController(ISupportRepository _supportRepository,
                                 ISupportTypeRepository _supportTypeRepository, IGamePlayerRepository _gamePlayerRepository)
        {
            this.baseRepository        = _supportRepository;
            this.supportRepository     = _supportRepository;
            this.supportTypeRepository = _supportTypeRepository;
            this.gamePlayerRepository  = _gamePlayerRepository;
        }
コード例 #3
0
        // GET: /Admin/ProductType/

        public SupportTypeController(ISupportTypeRepository _supportTypeRepository)
        {
            this.baseRepository        = _supportTypeRepository;
            this.supportTypeRepository = _supportTypeRepository;
        }