Пример #1
0
        protected void AddStates(BaseStateFlowValid _flow)
        {
            // Check that the state does not exist.
            int countExist = this.ListFlows
                             .Count(x => x.CurrentState == _flow.CurrentState);

            if (countExist != 0)
            {
                throw new System.Exception("Internal Use Error : The State " +
                                           _flow.CurrentState +
                                           " is present into the list");
            }
            // Add.
            this.ListFlows.Add(_flow);
        }
Пример #2
0
        protected bool IsValidOperationBase(BaseValidatorType type, T t_from, T t_to)
        {
            /*
             * Create.
             */
            if (type == BaseValidatorType.Create)
            {
                string             strStateName = GetStateName(t_from);
                BaseStateFlowValid flow         = this.ListFlows
                                                  .Where(x => x.CurrentState == strStateName)
                                                  .FirstOrDefault();
                return(flow.IsStatePermitCreate);
            }

            /*
             * Edit.
             */
            if (type == BaseValidatorType.Update)
            {
                string             strStateName = GetStateName(t_from);
                BaseStateFlowValid flow         = this.ListFlows
                                                  .Where(x => x.CurrentState == strStateName)
                                                  .FirstOrDefault();
                return(flow.IsStatePermitEdit && flow.StatesNext.Contains(GetStateName(t_to)));
            }

            /*
             * Delete.
             */
            if (type == BaseValidatorType.Delete)
            {
                string             strStateName = GetStateName(t_from);
                BaseStateFlowValid flow         = this.ListFlows
                                                  .Where(x => x.CurrentState == strStateName)
                                                  .FirstOrDefault();
                return(flow.IsStatePermitDelete);
            }

            /*
             * Default.
             */
            return(false);
        }