Exemplo n.º 1
0
 public GetTaskEstimationsCommandHandler(ITaskEstimationRepository taskEstimationRepository)
 {
     this._taskEstimationRepository = taskEstimationRepository;
 }
Exemplo n.º 2
0
 public CreateEstimationCommandHandler(ITaskEstimationFactory taskEstimationFactory, ITaskEstimationRepository taskEstimationRepository)
 {
     this._taskEstimationFactory    = taskEstimationFactory;
     this._taskEstimationRepository = taskEstimationRepository;
 }
 public UpdateEstimationCommandHandler(ITaskEstimationRepository taskEstimationRepository)
 {
     this._taskEstimationRepository = taskEstimationRepository;
 }