Пример #1
0
 public void TrwExportStateSet(TrwExchangeExportStates state)
 {
     if (_TrwExportState != state)
     {
         TrwExchangeExportStates old = _TrwExportState;
         _TrwExportState = state;
         OnChanged("TrwExportState", old, state);
     }
 }
Пример #2
0
 public void TrwExportStateSet(TrwExchangeExportStates state)
 {
     if (_TrwExportState != state)
     {
         TrwExchangeExportStates old = _TrwExportState;
         _TrwExportState = state;
         OnChanged("TrwExportState", old, state);
         if (StateChangedEvent != null)
         {
             StateChangedEvent(this, new StateChangedEventArgs(IsAcceptable, IsRejectable));
         }
     }
 }
Пример #3
0
 public void TrwExportStateSet(TrwExchangeExportStates state)
 {
     SetPropertyValue <TrwExchangeExportStates>("TrwExportState", ref _TrwExportState, state);
 }
Пример #4
0
 public override void AfterConstruction()
 {
     base.AfterConstruction();
     _TrwExportState = TrwExchangeExportStates.CREATED;
 }