private void InitializeFakeObjects()
 {
     _getJweInformationActionStub = new Mock <IGetJweInformationAction>();
     _createJweActionStub         = new Mock <ICreateJweAction>();
     _jweActions = new JweActions(
         _getJweInformationActionStub.Object,
         _createJweActionStub.Object);
 }
 public JweController(IJweActions jweActions)
 {
     _jweActions = jweActions;
 }