예제 #1
0
 public StepCountPresenter(IStepCountModel stepCountModel, StepCountView stepCountView)
 {
     stepCountModel.stepCount
     .Subscribe(stepCountView.Display)
     .AddTo(stepCountView);
 }
예제 #2
0
 public StepCountUseCase(IStepCountEntity stepCountEntity, IStepCountModel stepCountModel)
 {
     _stepCountEntity = stepCountEntity;
     _stepCountModel  = stepCountModel;
 }