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