public AbstractInterruptionService(
     ILogger logger,
     IInterruptionRepository interruptionRepository,
     IApiInterruptionRequestModelValidator interruptionModelValidator,
     IBOLInterruptionMapper bolInterruptionMapper,
     IDALInterruptionMapper dalInterruptionMapper)
     : base()
 {
     this.interruptionRepository     = interruptionRepository;
     this.interruptionModelValidator = interruptionModelValidator;
     this.bolInterruptionMapper      = bolInterruptionMapper;
     this.dalInterruptionMapper      = dalInterruptionMapper;
     this.logger = logger;
 }
Example #2
0
 public InterruptionService(
     ILogger <IInterruptionRepository> logger,
     IInterruptionRepository interruptionRepository,
     IApiInterruptionRequestModelValidator interruptionModelValidator,
     IBOLInterruptionMapper bolinterruptionMapper,
     IDALInterruptionMapper dalinterruptionMapper
     )
     : base(logger,
            interruptionRepository,
            interruptionModelValidator,
            bolinterruptionMapper,
            dalinterruptionMapper)
 {
 }