public GetStartSpaceshipCardsQueryHandler(CardGameContext context)
 {
     _context = context;
 }
 public AddPersonCommandHandler(CardGameContext context)
 {
     _context = context;
 }
 public GetAllPersonsQueryHandler(CardGameContext context)
 {
     _context = context;
 }
 public PostPlayerChangesCommandHandler(CardGameContext context, IServiceScopeFactory serviceScopeFactory)
 {
     _context             = context;
     _serviceScopeFactory = serviceScopeFactory;
 }
 public GetStartPersonsCardQueryHandler(CardGameContext context)
 {
     _context = context;
 }
 public GetAllSpaceshipsQueryHandler(CardGameContext context)
 {
     _context = context;
 }