コード例 #1
0
ファイル: TypesController.cs プロジェクト: futherxxx/Stakeway
 public TypesController(StakewayDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public GamesController(StakewayDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #3
0
 public GameTypesController(StakewayDbContext context)
 {
     this.context = context;
 }
コード例 #4
0
ファイル: UsersController.cs プロジェクト: futherxxx/Stakeway
 public UsersController(StakewayDbContext context)
 {
     _context = context;
 }