コード例 #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;
 }