public void CreateSamples()
        {
            _parserService.AddSample(
                "OspTool.exe -c Config -csu \"https://localhost:5001/\" -isu \"https://localhost:5003/\" -tid \"myTenant\"",
                "Configures the tool to be used with tenant 'myTenant' on OSP instance 'https://localhost:5001', using identity services at 'https://localhost:5003/'.");
            _parserService.AddSample(
                "OspTool.exe -c LogIn -u \"user\" -psw \"secretPassword\"",
                "Logs to the configured identity services with user 'user' and password 'secretPassword'. The access token is stored in a config file in the user profile.");

            _parserService.AddSample(
                "OspTool.exe -c Create -tid \"myTenant\" -db \"osp\"",
                "Creates a new database named 'osp' available as tenant 'myTenant' on the configured OSP instance.");
            _parserService.AddSample(
                "OspTool.exe -c Attach -tid \"myTenant\" -db \"osp\"",
                "Attach an existing database named 'osp' available as tenant 'myTenant' on the configured OSP instance.");
            _parserService.AddSample(
                "OspTool.exe -c Delete -tid \"myTenant\"",
                "Deletes the corresponding database of tenant named 'myTenant' on the configured OSP instance.");
            _parserService.AddSample(
                "OspTool.exe -c Clear -tid \"myTenant\"",
                "Deletes CK/RT data from tenant named 'myService' on the configured OSP instance.");
            _parserService.AddSample(
                "OspTool.exe -c ImportCk -f d:\\myckmodel.json",
                "Imports a construction kit model to the configured tenant.");
            _parserService.AddSample(
                "OspTool.exe -c ImportRt -f d:\\myrtmodel.json",
                "Imports a runtime model to the configured tenant.");
        }