Ejemplo n.º 1
0
 public FormController(IWebAppContext appContext
                       , ISystemFormFinder systemFormFinder
                       , ISystemFormUpdater systemFormUpdater
                       , IEntityFinder entityService
                       , IRibbonButtonFinder ribbonbuttonFinder
                       , IDataFinder dataFinder
                       , IAttributeFinder attributeFinder
                       , IWorkFlowInstanceService workFlowInstanceService
                       , ISystemUserPermissionService systemUserPermissionService
                       , IFormService formService
                       , ISystemFormStatusSetter systemFormStatusSetter
                       , IWorkFlowProcessFinder workFlowProcessFinder
                       , IRibbonButtonStatusSetter ribbonButtonStatusSetter
                       , IRoleObjectAccessEntityPermissionService roleObjectAccessEntityPermissionService
                       , ISerialNumberRuleFinder serialNumberRuleFinder)
     : base(appContext)
 {
     _systemFormFinder                        = systemFormFinder;
     _systemFormUpdater                       = systemFormUpdater;
     _entityFinder                            = entityService;
     _ribbonbuttonFinder                      = ribbonbuttonFinder;
     _dataFinder                              = dataFinder;
     _attributeFinder                         = attributeFinder;
     _workFlowInstanceService                 = workFlowInstanceService;
     _systemUserPermissionService             = systemUserPermissionService;
     _formService                             = formService;
     _systemFormStatusSetter                  = systemFormStatusSetter;
     _workFlowProcessFinder                   = workFlowProcessFinder;
     _ribbonButtonStatusSetter                = ribbonButtonStatusSetter;
     _roleObjectAccessEntityPermissionService = roleObjectAccessEntityPermissionService;
     _serialNumberRuleFinder                  = serialNumberRuleFinder;
 }
Ejemplo n.º 2
0
 public DashBoardController(IWebAppContext appContext
                            , ISystemFormFinder systemFormFinder
                            , ISystemFormUpdater systemFormUpdater)
     : base(appContext)
 {
     _systemFormFinder  = systemFormFinder;
     _systemFormUpdater = systemFormUpdater;
 }
Ejemplo n.º 3
0
 public SystemFormImporter(IAppContext appContext
                           , ISystemFormCreater SystemFormCreater
                           , ISystemFormUpdater SystemFormUpdater
                           , ISystemFormFinder SystemFormFinder)
 {
     _appContext        = appContext;
     _currentUser       = _appContext.GetFeature <ICurrentUser>();
     _SystemFormCreater = SystemFormCreater;
     _SystemFormUpdater = SystemFormUpdater;
     _SystemFormFinder  = SystemFormFinder;
 }
Ejemplo n.º 4
0
 public DashBoardController(IWebAppContext appContext
                            , ISolutionService solutionService
                            , ISystemFormCreater systemFormCreater
                            , ISystemFormUpdater systemFormUpdater
                            , ISystemFormFinder systemFormFinder
                            , ISystemFormDeleter systemFormDeleter)
     : base(appContext, solutionService)
 {
     _systemFormCreater = systemFormCreater;
     _systemFormUpdater = systemFormUpdater;
     _systemFormFinder  = systemFormFinder;
     _systemFormDeleter = systemFormDeleter;
 }
Ejemplo n.º 5
0
 public FormController(IWebAppContext appContext
                       , ISolutionService solutionService
                       , IEntityFinder entityFinder
                       , IRoleObjectAccessService roleObjectAccessService
                       , ISystemFormCreater systemFormCreater
                       , ISystemFormDeleter systemFormDeleter
                       , ISystemFormFinder systemFormFinder
                       , ISystemFormUpdater systemFormUpdater)
     : base(appContext, solutionService)
 {
     _entityFinder            = entityFinder;
     _roleObjectAccessService = roleObjectAccessService;
     _systemFormCreater       = systemFormCreater;
     _systemFormDeleter       = systemFormDeleter;
     _systemFormFinder        = systemFormFinder;
     _systemFormUpdater       = systemFormUpdater;
 }