예제 #1
0
        public LocationService(
            ILogger <ILocationService> logger,
            MediatR.IMediator mediator,
            ILocationRepository locationRepository,
            IApiLocationServerRequestModelValidator locationModelValidator,
            IDALLocationMapper dalLocationMapper,
            IDALTweetMapper dalTweetMapper,
            IDALUserMapper dalUserMapper)
            : base()
        {
            this.LocationRepository     = locationRepository;
            this.LocationModelValidator = locationModelValidator;
            this.DalLocationMapper      = dalLocationMapper;
            this.DalTweetMapper         = dalTweetMapper;
            this.DalUserMapper          = dalUserMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
예제 #2
0
 public LocationService(
     ILogger <ILocationRepository> logger,
     ILocationRepository locationRepository,
     IApiLocationRequestModelValidator locationModelValidator,
     IBOLLocationMapper bollocationMapper,
     IDALLocationMapper dallocationMapper,
     IBOLProductInventoryMapper bolProductInventoryMapper,
     IDALProductInventoryMapper dalProductInventoryMapper,
     IBOLWorkOrderRoutingMapper bolWorkOrderRoutingMapper,
     IDALWorkOrderRoutingMapper dalWorkOrderRoutingMapper)
     : base(logger,
            locationRepository,
            locationModelValidator,
            bollocationMapper,
            dallocationMapper,
            bolProductInventoryMapper,
            dalProductInventoryMapper,
            bolWorkOrderRoutingMapper,
            dalWorkOrderRoutingMapper)
 {
 }
예제 #3
0
 public LocationService(
     ILogger <ILocationRepository> logger,
     ILocationRepository locationRepository,
     IApiLocationRequestModelValidator locationModelValidator,
     IBOLLocationMapper bollocationMapper,
     IDALLocationMapper dallocationMapper,
     IBOLTweetMapper bolTweetMapper,
     IDALTweetMapper dalTweetMapper,
     IBOLUserMapper bolUserMapper,
     IDALUserMapper dalUserMapper)
     : base(logger,
            locationRepository,
            locationModelValidator,
            bollocationMapper,
            dallocationMapper,
            bolTweetMapper,
            dalTweetMapper,
            bolUserMapper,
            dalUserMapper)
 {
 }
예제 #4
0
 public AbstractLocationService(
     ILogger logger,
     ILocationRepository locationRepository,
     IApiLocationRequestModelValidator locationModelValidator,
     IBOLLocationMapper bolLocationMapper,
     IDALLocationMapper dalLocationMapper,
     IBOLTweetMapper bolTweetMapper,
     IDALTweetMapper dalTweetMapper,
     IBOLUserMapper bolUserMapper,
     IDALUserMapper dalUserMapper)
     : base()
 {
     this.LocationRepository     = locationRepository;
     this.LocationModelValidator = locationModelValidator;
     this.BolLocationMapper      = bolLocationMapper;
     this.DalLocationMapper      = dalLocationMapper;
     this.BolTweetMapper         = bolTweetMapper;
     this.DalTweetMapper         = dalTweetMapper;
     this.BolUserMapper          = bolUserMapper;
     this.DalUserMapper          = dalUserMapper;
     this.logger = logger;
 }
예제 #5
0
 public AbstractLocationService(
     ILogger logger,
     ILocationRepository locationRepository,
     IApiLocationRequestModelValidator locationModelValidator,
     IBOLLocationMapper bolLocationMapper,
     IDALLocationMapper dalLocationMapper,
     IBOLProductInventoryMapper bolProductInventoryMapper,
     IDALProductInventoryMapper dalProductInventoryMapper,
     IBOLWorkOrderRoutingMapper bolWorkOrderRoutingMapper,
     IDALWorkOrderRoutingMapper dalWorkOrderRoutingMapper)
     : base()
 {
     this.LocationRepository        = locationRepository;
     this.LocationModelValidator    = locationModelValidator;
     this.BolLocationMapper         = bolLocationMapper;
     this.DalLocationMapper         = dalLocationMapper;
     this.BolProductInventoryMapper = bolProductInventoryMapper;
     this.DalProductInventoryMapper = dalProductInventoryMapper;
     this.BolWorkOrderRoutingMapper = bolWorkOrderRoutingMapper;
     this.DalWorkOrderRoutingMapper = dalWorkOrderRoutingMapper;
     this.logger = logger;
 }