Exemplo n.º 1
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)
 {
 }
Exemplo n.º 2
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)
 {
 }
Exemplo n.º 3
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;
 }
Exemplo n.º 4
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;
 }