public void Setup()
 {
     this.logger = new TestLogger();
     this.configurationService = new TestConfigurationService();
     this.crmService           = new TestCrmService();
     this.deallocationService  = new DeallocationService(this.logger, this.crmService);
 }
 public DeallocateBookingService(ILogger logger, IDeallocationService deallocationService, IConfigurationService configurationService)
 {
     this.logger = logger;
     this.deallocationService  = deallocationService;
     this.configurationService = configurationService;
 }