public void Setup()
 {
     this.logger = new TestLogger();
     this.configurationService = new TestAllocationConfigurationService();
     this.crmService           = new TestCrmService();
     this.deallocationService  = new DeallocationService(this.logger, this.crmService);
 }
 public AllocateResortTeamService(ILogger logger, IAllocationService allocationService, IAllocationConfigurationService configurationService)
 {
     this.logger               = logger;
     this.allocationService    = allocationService;
     this.configurationService = configurationService;
 }
Ejemplo n.º 3
0
 public DeallocateBookingService(ILogger logger, IDeallocationService deallocationService, IAllocationConfigurationService configurationService)
 {
     this.logger = logger;
     this.deallocationService  = deallocationService;
     this.configurationService = configurationService;
 }