public AbstractKeyAllocationService(
     ILogger logger,
     IKeyAllocationRepository keyAllocationRepository,
     IApiKeyAllocationRequestModelValidator keyAllocationModelValidator,
     IBOLKeyAllocationMapper bolKeyAllocationMapper,
     IDALKeyAllocationMapper dalKeyAllocationMapper)
     : base()
 {
     this.keyAllocationRepository     = keyAllocationRepository;
     this.keyAllocationModelValidator = keyAllocationModelValidator;
     this.bolKeyAllocationMapper      = bolKeyAllocationMapper;
     this.dalKeyAllocationMapper      = dalKeyAllocationMapper;
     this.logger = logger;
 }
Example #2
0
 public KeyAllocationService(
     ILogger <IKeyAllocationRepository> logger,
     IKeyAllocationRepository keyAllocationRepository,
     IApiKeyAllocationRequestModelValidator keyAllocationModelValidator,
     IBOLKeyAllocationMapper bolkeyAllocationMapper,
     IDALKeyAllocationMapper dalkeyAllocationMapper
     )
     : base(logger,
            keyAllocationRepository,
            keyAllocationModelValidator,
            bolkeyAllocationMapper,
            dalkeyAllocationMapper)
 {
 }
Example #3
0
 public AbstractApiKeyAllocationRequestModelValidator(IKeyAllocationRepository keyAllocationRepository)
 {
     this.keyAllocationRepository = keyAllocationRepository;
 }
 public ApiKeyAllocationRequestModelValidator(IKeyAllocationRepository keyAllocationRepository)
     : base(keyAllocationRepository)
 {
 }