Exemple #1
0
 public void UpdatedInitialValues(List <EntityReferenceValue> values)
 {
     if (values != null && AssociationState != null)
     {
         foreach (var item in values)
         {
             var stateLine = AssociationState.First(k => k.Value.Id == item.Id);
             stateLine.IsSelected = true;
         }
     }
 }
Exemple #2
0
 internal State3(Fsm fsm, AssociationState state)
     : base(fsm, state)
 {
 }
Exemple #3
0
 internal State1(Fsm fsm, AssociationState type)
     : base(fsm, (int) type)
 {
 }
Exemple #4
0
 internal State(Fsm fsm, AssociationState type)
 {
     m_fsm = fsm;
     this.type = (int) type;
 }
Exemple #5
0
 public void UpdatedChecked()
 {
     _view.RaiseValueChangedEvent(AssociationState.Where(k => k.IsSelected).Select(k => k.Value).ToList());
 }