コード例 #1
0
 public GetStartSpaceshipCardsQueryHandler(CardGameContext context)
 {
     _context = context;
 }
コード例 #2
0
 public AddPersonCommandHandler(CardGameContext context)
 {
     _context = context;
 }
コード例 #3
0
 public GetAllPersonsQueryHandler(CardGameContext context)
 {
     _context = context;
 }
コード例 #4
0
 public PostPlayerChangesCommandHandler(CardGameContext context, IServiceScopeFactory serviceScopeFactory)
 {
     _context             = context;
     _serviceScopeFactory = serviceScopeFactory;
 }
コード例 #5
0
 public GetStartPersonsCardQueryHandler(CardGameContext context)
 {
     _context = context;
 }
コード例 #6
0
 public GetAllSpaceshipsQueryHandler(CardGameContext context)
 {
     _context = context;
 }