├── WorkFlowManager.Web
├── Views
│ ├── _ViewStart.cshtml
│ ├── Account
│ │ ├── ExternalLoginFailure.cshtml
│ │ ├── ForgotPasswordConfirmation.cshtml
│ │ ├── ConfirmEmail.cshtml
│ │ ├── ResetPasswordConfirmation.cshtml
│ │ ├── SendCode.cshtml
│ │ ├── ForgotPassword.cshtml
│ │ ├── _ExternalLoginsListPartial.cshtml
│ │ ├── VerifyCode.cshtml
│ │ ├── ExternalLoginConfirmation.cshtml
│ │ ├── Register.cshtml
│ │ └── ResetPassword.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ ├── Lockout.cshtml
│ │ ├── EditorTemplates
│ │ │ └── _ComplexityEnum.cshtml
│ │ ├── _ProcessInformation.cshtml
│ │ ├── _WorkFlowTraceStatus.cshtml
│ │ ├── _LoginPartial.cshtml
│ │ └── _ProcessButton.cshtml
│ ├── Home
│ │ ├── About.cshtml
│ │ ├── Contact.cshtml
│ │ └── Index.cshtml
│ ├── WorkFlow
│ │ ├── EditorTemplates
│ │ │ └── NextProcess.cshtml
│ │ ├── _DecisionMethod.cshtml
│ │ └── _SpecialForms.cshtml
│ ├── WorkFlowProcess
│ │ ├── TestWorkFlowForm.cshtml
│ │ └── HealthInformationWorkFlowForm.cshtml
│ ├── Manage
│ │ ├── AddPhoneNumber.cshtml
│ │ ├── VerifyPhoneNumber.cshtml
│ │ ├── SetPassword.cshtml
│ │ └── ChangePassword.cshtml
│ └── Web.config
├── favicon.ico
├── Global.asax
├── Scripts
│ ├── _references.js
│ ├── main.js
│ └── PostEditor.js
├── Content
│ ├── plugins
│ │ └── iCheck
│ │ │ ├── flat
│ │ │ ├── aero.png
│ │ │ ├── blue.png
│ │ │ ├── flat.png
│ │ │ ├── grey.png
│ │ │ ├── pink.png
│ │ │ ├── red.png
│ │ │ ├── aero@2x.png
│ │ │ ├── blue@2x.png
│ │ │ ├── flat@2x.png
│ │ │ ├── green.png
│ │ │ ├── grey@2x.png
│ │ │ ├── orange.png
│ │ │ ├── pink@2x.png
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── yellow.png
│ │ │ ├── green@2x.png
│ │ │ ├── orange@2x.png
│ │ │ ├── purple@2x.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── flat.css
│ │ │ ├── red.css
│ │ │ ├── aero.css
│ │ │ ├── blue.css
│ │ │ ├── grey.css
│ │ │ ├── pink.css
│ │ │ ├── green.css
│ │ │ ├── orange.css
│ │ │ ├── purple.css
│ │ │ └── yellow.css
│ │ │ ├── line
│ │ │ ├── line.png
│ │ │ ├── line@2x.png
│ │ │ └── line.css
│ │ │ ├── minimal
│ │ │ ├── aero.png
│ │ │ ├── blue.png
│ │ │ ├── grey.png
│ │ │ ├── pink.png
│ │ │ ├── red.png
│ │ │ ├── green.png
│ │ │ ├── orange.png
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── yellow.png
│ │ │ ├── aero@2x.png
│ │ │ ├── blue@2x.png
│ │ │ ├── green@2x.png
│ │ │ ├── grey@2x.png
│ │ │ ├── minimal.png
│ │ │ ├── orange@2x.png
│ │ │ ├── pink@2x.png
│ │ │ ├── purple@2x.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── minimal@2x.png
│ │ │ ├── minimal.css
│ │ │ ├── red.css
│ │ │ ├── aero.css
│ │ │ ├── blue.css
│ │ │ ├── grey.css
│ │ │ ├── pink.css
│ │ │ ├── green.css
│ │ │ ├── orange.css
│ │ │ ├── purple.css
│ │ │ └── yellow.css
│ │ │ ├── square
│ │ │ ├── aero.png
│ │ │ ├── blue.png
│ │ │ ├── green.png
│ │ │ ├── grey.png
│ │ │ ├── pink.png
│ │ │ ├── red.png
│ │ │ ├── aero@2x.png
│ │ │ ├── blue@2x.png
│ │ │ ├── grey@2x.png
│ │ │ ├── orange.png
│ │ │ ├── pink@2x.png
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── square.png
│ │ │ ├── yellow.png
│ │ │ ├── green@2x.png
│ │ │ ├── orange@2x.png
│ │ │ ├── purple@2x.png
│ │ │ ├── square@2x.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── square.css
│ │ │ ├── red.css
│ │ │ ├── aero.css
│ │ │ ├── blue.css
│ │ │ ├── grey.css
│ │ │ ├── pink.css
│ │ │ ├── green.css
│ │ │ ├── orange.css
│ │ │ ├── purple.css
│ │ │ └── yellow.css
│ │ │ ├── futurico
│ │ │ ├── futurico.png
│ │ │ ├── futurico@2x.png
│ │ │ └── futurico.css
│ │ │ ├── polaris
│ │ │ ├── polaris.png
│ │ │ ├── polaris@2x.png
│ │ │ └── polaris.css
│ │ │ └── all.css
│ ├── fileUploader.css
│ └── site.css
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── App_Start
│ ├── FilterConfig.cs
│ └── RouteConfig.cs
├── Models
│ ├── WorkFlowTestModel.cs
│ └── IdentityModels.cs
├── Startup.cs
├── Global.asax.cs
├── Global.cs
├── ClassDiagram1.cd
├── Infra
│ └── WorkFlowFormModelBinder.cs
├── Web.Debug.config
├── Web.Release.config
├── Properties
│ └── AssemblyInfo.cs
└── Controllers
│ └── HomeController.cs
├── WorkFlowManager.Common
├── Dto
│ ├── TaskVariable.cs
│ └── WorlFlowDto.cs
├── Tables
│ ├── TestForm.cs
│ ├── WorkFlow.cs
│ ├── ProcessMonitoringRole.cs
│ ├── WorkFlowEngineVariable.cs
│ ├── DecisionMethod.cs
│ ├── BusinessProcess.cs
│ ├── BaseTable.cs
│ ├── Document.cs
│ ├── FormView.cs
│ ├── ConditionOption.cs
│ ├── SubProcess.cs
│ ├── WorkFlowTrace.cs
│ ├── Condition.cs
│ ├── DecisionPoint.cs
│ ├── Task.cs
│ └── Process.cs
├── Enums
│ ├── Gender.cs
│ ├── RegistrationStatus.cs
│ ├── FormComplexity.cs
│ ├── ProcessStatus.cs
│ ├── FileType.cs
│ ├── MessageType.cs
│ ├── MessageDialogType.cs
│ ├── ProcessType.cs
│ ├── ProjectRole.cs
│ └── SystemMessage.cs
├── Mapping
│ ├── BaseTableTableMap.cs
│ ├── DecisionPointMap.cs
│ ├── ConditionMap.cs
│ ├── TestFormMap.cs
│ ├── ConditionOptionMap.cs
│ ├── BaseTableMap.cs
│ ├── ProcessMonitoringRoleMap.cs
│ ├── WorkFlowTraceMap.cs
│ ├── WorkFlowMap.cs
│ ├── BusinessProcessMap.cs
│ ├── TaskMap.cs
│ ├── DecisionMethodMap.cs
│ ├── ProcessMap.cs
│ ├── FormViewMap.cs
│ └── DocumentMap.cs
├── ViewModels
│ ├── SubBusinessProcessViewModel.cs
│ ├── TestWorkFlowFormViewModel.cs
│ ├── WorkFlowTraceVM.cs
│ ├── TemplateViewModel.cs
│ └── ProcessVM.cs
├── DataAccess
│ ├── _UnitOfWork
│ │ ├── IUnitOfWork.cs
│ │ └── UnitOfWork.cs
│ └── Repositories
│ │ ├── IDbContext.cs
│ │ └── IRepository.cs
├── Constants
│ └── IWorkFlowForm.cs
├── Helper
│ └── ValidationHelper.cs
├── Validation
│ ├── TestFormViewModelValidator.cs
│ └── FormViewValidation.cs
├── packages.config
├── App.config
├── InfraStructure
│ ├── MultipleButtonAttribute.cs
│ └── PagedData.cs
├── Properties
│ └── AssemblyInfo.cs
└── Factory
│ └── ProcessFactory.cs
├── WorkFlowManager.Services
├── app.config
├── DbServices
│ ├── IWorkFlow.cs
│ ├── DocumentService.cs
│ └── DynamicMethodCallService.cs
├── packages.config
├── Properties
│ └── AssemblyInfo.cs
├── CustomForms
│ └── TestWorkFlowForm.cs
└── ClassDiagram1.cd
├── WorkFlowManager.Helper
├── ValidationHelper.cs
└── Properties
│ └── AssemblyInfo.cs
├── README.md
└── WorkFlowManager.sln
/WorkFlowManager.Web/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/WorkFlowManager.Web/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/favicon.ico
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="WorkFlowManager.Web.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Scripts/_references.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Scripts/_references.js
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/aero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/aero.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/blue.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/flat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/flat.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/grey.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/pink.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/red.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/line/line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/line/line.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/aero@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/aero@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/blue@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/blue@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/flat@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/flat@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/green.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/grey@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/grey@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/orange.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/pink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/pink@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/purple.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/red@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/red@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/yellow.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/line/line@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/line/line@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/aero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/aero.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/blue.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/grey.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/pink.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/red.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/aero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/aero.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/blue.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/green.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/grey.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/pink.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/red.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/green@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/green@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/orange@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/orange@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/purple@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/purple@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/flat/yellow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/flat/yellow@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/green.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/orange.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/purple.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/red@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/red@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/yellow.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/aero@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/aero@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/blue@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/blue@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/grey@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/grey@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/orange.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/pink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/pink@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/purple.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/red@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/red@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/square.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/square.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/yellow.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/futurico/futurico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/futurico/futurico.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/aero@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/aero@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/blue@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/blue@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/green@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/green@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/grey@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/grey@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/minimal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/minimal.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/orange@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/orange@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/pink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/pink@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/purple@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/purple@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/yellow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/yellow@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/polaris/polaris.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/polaris/polaris.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/green@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/green@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/orange@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/orange@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/purple@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/purple@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/square@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/square@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/square/yellow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/square/yellow@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/minimal/minimal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/minimal/minimal@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/polaris/polaris@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/polaris/polaris@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Content/plugins/iCheck/futurico/futurico@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alperkarasahin/WorkFlowEngine/HEAD/WorkFlowManager.Web/Content/plugins/iCheck/futurico/futurico@2x.png
--------------------------------------------------------------------------------
/WorkFlowManager.Common/Dto/TaskVariable.cs:
--------------------------------------------------------------------------------
1 | namespace WorkFlowManager.Common.Dto
2 | {
3 | public class TaskVariable
4 | {
5 | public int TaskId { get; set; }
6 | public string VariableName { get; set; }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Views/Account/ExternalLoginFailure.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Login Failure";
3 | }
4 |
5 |
6 | @ViewBag.Title.
7 | Unsuccessful login with service.
8 |
9 |
--------------------------------------------------------------------------------
/WorkFlowManager.Web/Views/Shared/Error.cshtml:
--------------------------------------------------------------------------------
1 | @model System.Web.Mvc.HandleErrorInfo
2 |
3 | @{
4 | ViewBag.Title = "Error";
5 | }
6 |
7 |
10 | Please check your email to reset your password. 11 |
12 |8 | Thank you for confirming your email. Please @Html.ActionLink("Click here to Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" }) 9 |
10 |You can show detail information in https://medium.com/@@alperkarasahin/work-flow-engine-with-c-net-mvc-b8ef2f7ecbdf page.
8 | -------------------------------------------------------------------------------- /WorkFlowManager.Common/ViewModels/SubBusinessProcessViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using WorkFlowManager.Common.Tables; 3 | 4 | namespace WorkFlowManager.Common.ViewModels 5 | { 6 | public class SubBusinessProcessViewModel : WorkFlowFormViewModel 7 | { 8 | public List10 | Your password has been reset. Please @Html.ActionLink("click here to log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" }) 11 |
12 || Name | Function |
| @item.MethodName | @item.MethodFunction |
| Name | View Name |
| @item.FormName | @item.ViewName |
11 | There are no external authentication services configured. See this article 12 | for details on setting up this ASP.NET application to support logging in via external services. 13 |
14 |8 | You do not have a local username/password for this site. Add a local 9 | account so you can log in without an external login. 10 |
11 | 12 | @using (Html.BeginForm("SetPassword", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) 13 | { 14 | @Html.AntiForgeryToken() 15 | 16 |16 | You've successfully authenticated with @ViewBag.LoginProvider. 17 | Please enter a user name for this site below and click the Register button to finish 18 | logging in. 19 |
20 || Name | 21 |Sub Process | 22 |
|---|---|
| 29 | @item.Name 30 | | 31 |
32 | @if (item.Name == "Psychotechnique Result")
33 | {
34 |
35 | 36 | 37 | } 38 | else 39 | { 40 | 41 | 42 | 43 | } 44 | |
45 |
21 | @foreach (AuthenticationDescription p in loginProviders) { 22 | 23 | } 24 |
25 |