Esempio n. 1
0
 public AirportController(DistributedServicesAutoMapper distributedServicesAutoMapper, DomainIoCContainer domainIoCContainer)
     : base(distributedServicesAutoMapper, domainIoCContainer)
 {
     InitializeServices();
 }
Esempio n. 2
0
 public BaseApiController()
 {
     DomainIoCContainer            = new DomainIoCContainer();
     DistributedServicesAutoMapper = new DistributedServicesAutoMapper();
 }
Esempio n. 3
0
 public FlightController(DistributedServicesAutoMapper distributedServicesAutoMapper, DomainIoCContainer domainIoCContainer)
     : base(distributedServicesAutoMapper, domainIoCContainer)
 {
     this.InitializeServices();
 }
Esempio n. 4
0
 public BaseApiController(DistributedServicesAutoMapper distributedServicesAutoMapper, DomainIoCContainer domainIoCContainer)
 {
     DomainIoCContainer            = domainIoCContainer;
     DistributedServicesAutoMapper = distributedServicesAutoMapper;
 }