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