コード例 #1
0
 public JwsActions(
     IGetJwsInformationAction getJwsInformationAction,
     ICreateJwsAction createJwsAction)
 {
     _getJwsInformationAction = getJwsInformationAction;
     _createJwsAction         = createJwsAction;
 }
コード例 #2
0
 private void InitializeFakeObjects()
 {
     _jwsGeneratorStub     = new Mock <IJwsGenerator>();
     _jsonWebKeyHelperStub = new Mock <IJsonWebKeyHelper>();
     _createJwsAction      = new CreateJwsAction(
         _jwsGeneratorStub.Object,
         _jsonWebKeyHelperStub.Object);
 }