public HomeController(
            IGoogleService googleService,
            GoogleSessionSettings googleSessionSettings,
            IGithubService githubService,
            GithubSessionSettings githubSessionSettings)
        {
            _googleService         = googleService;
            _googleSessionSettings = googleSessionSettings;

            _githubService         = githubService;
            _githubSessionSettings = githubSessionSettings;
        }
 public GoogleController(IGoogleService googleService, GoogleSessionSettings googleSessionSettings)
 {
     _googleService         = googleService;
     _googleSessionSettings = googleSessionSettings;
 }