Beispiel #1
0
 public static MyTermsAndConditionsState ReduceGetMyTermsAndConditions(MyTermsAndConditionsState state, GetMyTermsAndConditions action) =>
 new MyTermsAndConditionsState(isLoading: true, healthAndSafetyMeasuresAccepted: false, privacyActStatementAccepted: false);
Beispiel #2
0
 public static MyTermsAndConditionsState ReduceGetMyTermsAndConditionsResultAction(MyTermsAndConditionsState state, GetMyTermsAndConditionsResultAction action) =>
 new MyTermsAndConditionsState(isLoading: false, action.IsHealthAndSafetyMeasuresAccepted, action.IsPrivacyActStatementAccepted);