Exemplo n.º 1
0
 public DestinationService(
     ILogger <IDestinationRepository> logger,
     IDestinationRepository destinationRepository,
     IApiDestinationRequestModelValidator destinationModelValidator,
     IBOLDestinationMapper boldestinationMapper,
     IDALDestinationMapper daldestinationMapper)
     : base(logger,
            destinationRepository,
            destinationModelValidator,
            boldestinationMapper,
            daldestinationMapper)
 {
 }
Exemplo n.º 2
0
 public AbstractDestinationService(
     ILogger logger,
     IDestinationRepository destinationRepository,
     IApiDestinationRequestModelValidator destinationModelValidator,
     IBOLDestinationMapper bolDestinationMapper,
     IDALDestinationMapper dalDestinationMapper)
     : base()
 {
     this.DestinationRepository     = destinationRepository;
     this.DestinationModelValidator = destinationModelValidator;
     this.BolDestinationMapper      = bolDestinationMapper;
     this.DalDestinationMapper      = dalDestinationMapper;
     this.logger = logger;
 }