├── .gitattributes ├── .github └── workflows │ └── master_surveyjs-nce.yml ├── .gitignore ├── Code └── FormAttributes.cs ├── Controllers ├── FormController.cs └── HomeController.cs ├── Data ├── nps-survey.json └── patient-assessment.json ├── DomainModels ├── DataStorage.cs ├── DomainModel.cs ├── DomainModelList.cs ├── JobApplication.cs ├── NPSSurvey.cs ├── PatientAssessment.cs └── PersonInformation.cs ├── DomainModelsViews ├── JsonFormGenerator.cs └── JsonForms.cs ├── Models ├── EditFormModel.cs ├── ErrorViewModel.cs ├── FormListModel.cs └── FormResponseModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Startup.cs ├── Views ├── Home │ ├── EditForm.cshtml │ ├── FormResponse.cshtml │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── surveyjs-as-form-library.csproj ├── surveyjs-as-form-library.sln └── wwwroot ├── css └── site.css ├── favicon.ico ├── images ├── admin.svg ├── circle.svg ├── facebook.svg ├── github.svg ├── logo.svg ├── manage.svg ├── medium.svg ├── run.svg └── twitter.svg └── js ├── codegenerator.js ├── creatorjs.js ├── form_api.js ├── site.js └── surveyjs.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/master_surveyjs-nce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/.github/workflows/master_surveyjs-nce.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/FormAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Code/FormAttributes.cs -------------------------------------------------------------------------------- /Controllers/FormController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Controllers/FormController.cs -------------------------------------------------------------------------------- /Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Data/nps-survey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Data/nps-survey.json -------------------------------------------------------------------------------- /Data/patient-assessment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Data/patient-assessment.json -------------------------------------------------------------------------------- /DomainModels/DataStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModels/DataStorage.cs -------------------------------------------------------------------------------- /DomainModels/DomainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModels/DomainModel.cs -------------------------------------------------------------------------------- /DomainModels/DomainModelList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModels/DomainModelList.cs -------------------------------------------------------------------------------- /DomainModels/JobApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModels/JobApplication.cs -------------------------------------------------------------------------------- /DomainModels/NPSSurvey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModels/NPSSurvey.cs -------------------------------------------------------------------------------- /DomainModels/PatientAssessment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModels/PatientAssessment.cs -------------------------------------------------------------------------------- /DomainModels/PersonInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModels/PersonInformation.cs -------------------------------------------------------------------------------- /DomainModelsViews/JsonFormGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModelsViews/JsonFormGenerator.cs -------------------------------------------------------------------------------- /DomainModelsViews/JsonForms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/DomainModelsViews/JsonForms.cs -------------------------------------------------------------------------------- /Models/EditFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Models/EditFormModel.cs -------------------------------------------------------------------------------- /Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Models/FormListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Models/FormListModel.cs -------------------------------------------------------------------------------- /Models/FormResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Models/FormResponseModel.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/README.md -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Startup.cs -------------------------------------------------------------------------------- /Views/Home/EditForm.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/Home/EditForm.cshtml -------------------------------------------------------------------------------- /Views/Home/FormResponse.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/Home/FormResponse.cshtml -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/appsettings.json -------------------------------------------------------------------------------- /surveyjs-as-form-library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/surveyjs-as-form-library.csproj -------------------------------------------------------------------------------- /surveyjs-as-form-library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/surveyjs-as-form-library.sln -------------------------------------------------------------------------------- /wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/css/site.css -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/images/admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/admin.svg -------------------------------------------------------------------------------- /wwwroot/images/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/circle.svg -------------------------------------------------------------------------------- /wwwroot/images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/facebook.svg -------------------------------------------------------------------------------- /wwwroot/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/github.svg -------------------------------------------------------------------------------- /wwwroot/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/logo.svg -------------------------------------------------------------------------------- /wwwroot/images/manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/manage.svg -------------------------------------------------------------------------------- /wwwroot/images/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/medium.svg -------------------------------------------------------------------------------- /wwwroot/images/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/run.svg -------------------------------------------------------------------------------- /wwwroot/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/images/twitter.svg -------------------------------------------------------------------------------- /wwwroot/js/codegenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/js/codegenerator.js -------------------------------------------------------------------------------- /wwwroot/js/creatorjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/js/creatorjs.js -------------------------------------------------------------------------------- /wwwroot/js/form_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/js/form_api.js -------------------------------------------------------------------------------- /wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/js/site.js -------------------------------------------------------------------------------- /wwwroot/js/surveyjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/generate-forms-from-domain-models/HEAD/wwwroot/js/surveyjs.js --------------------------------------------------------------------------------