public GithubController(
     IGithubService githubService,
     GithubSessionSettings githubSessionSettings,
     IMapper mapper)
 {
     _githubService         = githubService;
     _githubSessionSettings = githubSessionSettings;
     _mapper = mapper;
 }
        public HomeController(
            IGoogleService googleService,
            GoogleSessionSettings googleSessionSettings,
            IGithubService githubService,
            GithubSessionSettings githubSessionSettings)
        {
            _googleService         = googleService;
            _googleSessionSettings = googleSessionSettings;

            _githubService         = githubService;
            _githubSessionSettings = githubSessionSettings;
        }