示例#1
0
 public FlightService(IAirService _AirService,
                      IUtilityService _UtilityService,
                      ILogService _LogService,
                      IMemoryCache memoryCache,
                      TCContext _context)
 {
     this._cache          = memoryCache;
     this._AirService     = _AirService;
     this._UtilityService = _UtilityService;
     this._LogService     = _LogService;
     this._context        = _context;
 }
示例#2
0
 public AirPriceController(IAirService _AirService)
 {
     this._AirService = _AirService;
 }
 public AirsAvailableController(IAirService airService, IMapper mapper)
 {
     this._airService = airService;
     this._mapper     = mapper;
 }
示例#4
0
 public FlightsController(IAirService _AirService)
 {
     this._AirService = _AirService;
 }