public void SetUp()
 {
     purchaseApplicationRepository = new Mock <PurchaseApplicationRepository>();
     timeService    = new Mock <TimeService>();
     commandHandler = new CreatePurchaseApplicationCommandHandler(
         purchaseApplicationRepository: purchaseApplicationRepository.Object,
         timeService: timeService.Object);
 }
 public CreatePurchaseApplicationController(CreatePurchaseApplicationCommandHandler commandHandler)
 {
     this.commandHandler = commandHandler;
 }