public GameController(GameContext dbcontext, IGameService gameService, IUserService userService, IClueService clueService)
 {
     _dbContext   = dbcontext;
     _gameService = gameService;
     _userService = userService;
     _clueService = clueService;
 }
        //private IUserService _userService;

        public GameService(GameContext context, IClueService clueService, ISuspectService suspectService, ILocationService locationService)
        {
            _dbContext       = context;
            _clueService     = clueService;
            _suspectService  = suspectService;
            _locationService = locationService;
            //_userService = userService;
        }
 public ClueController(GameContext context, IClueService clueService)
 {
     _dbContext   = context;
     _clueService = clueService;
 }