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