public K8SController(
     IPortalService portalService,
     IAksService aksService)
 {
     _portalService = portalService;
     _aksService    = aksService;
 }
        //private readonly IProjectService _projectService;
        //private readonly IBuildService _buildService;

        public LoginController(
            Configuration configuration,
            IPortalService portalService,
            IAcrService acrService,
            IDockerService dockerService,
            IHelmService helmService,
            IAksService aksService,
            IProjectService projectService,
            IBuildService buildService)
        {
            Configuration  = configuration;
            _portalService = portalService;
            _acrService    = acrService;
            _dockerService = dockerService;
            _helmService   = helmService;
            _aksService    = aksService;
            //_projectService = projectService;
            //_buildService = buildService;
        }