Beispiel #1
0
 public TimestampCheckService(
     ILogger <ITimestampCheckRepository> logger,
     ITimestampCheckRepository timestampCheckRepository,
     IApiTimestampCheckRequestModelValidator timestampCheckModelValidator,
     IBOLTimestampCheckMapper boltimestampCheckMapper,
     IDALTimestampCheckMapper daltimestampCheckMapper)
     : base(logger,
            timestampCheckRepository,
            timestampCheckModelValidator,
            boltimestampCheckMapper,
            daltimestampCheckMapper)
 {
 }
Beispiel #2
0
 public AbstractTimestampCheckService(
     ILogger logger,
     ITimestampCheckRepository timestampCheckRepository,
     IApiTimestampCheckRequestModelValidator timestampCheckModelValidator,
     IBOLTimestampCheckMapper bolTimestampCheckMapper,
     IDALTimestampCheckMapper dalTimestampCheckMapper)
     : base()
 {
     this.timestampCheckRepository     = timestampCheckRepository;
     this.timestampCheckModelValidator = timestampCheckModelValidator;
     this.bolTimestampCheckMapper      = bolTimestampCheckMapper;
     this.dalTimestampCheckMapper      = dalTimestampCheckMapper;
     this.logger = logger;
 }