public JweActions(
     IGetJweInformationAction getJweInformationAction,
     ICreateJweAction createJweAction)
 {
     _getJweInformationAction = getJweInformationAction;
     _createJweAction         = createJweAction;
 }
 private void InitializeFakeObjects()
 {
     _jweGeneratorStub     = new Mock <IJweGenerator>();
     _jsonWebKeyHelperStub = new Mock <IJsonWebKeyHelper>();
     _createJweAction      = new CreateJweAction(
         _jweGeneratorStub.Object,
         _jsonWebKeyHelperStub.Object);
 }