public PlayersControllerTests()
 {
     _context    = ContextFactory.InMemory();
     _controller = new PlayersController(_context);
 }
 public PlayersController(FootyContext context)
 {
     _context = context;
 }