Esempio n. 1
0
        public Installation Upgrade()
        {
            var installation = new Installation {
                Success = true, Message = ""
            };

            _installationManager.UpgradeFramework();
            return(installation);
        }
        public GenericResponse Upgrade()
        {
            var response = new GenericResponse {
                Success = true, Message = ""
            };

            InstallationManager.UpgradeFramework();
            return(response);
        }