Example #1
0
 public GeoService(ISabreConnector _SabreConnector,
                   IMemoryCache _cache,
                   ILogService _LogService,
                   IUtilityService _UtilityService,
                   TCContext _context)
 {
     this._SabreConnector = _SabreConnector;
     this._cache          = _cache;
     this._LogService     = _LogService;
     this._UtilityService = _UtilityService;
     this._context        = _context;
 }
Example #2
0
 public PnrService(ISabreConnector _SabreConnector)
 {
     this._SabreConnector = _SabreConnector;
 }
Example #3
0
 public UtilityService(ISabreConnector _SabreConnector,
                       ILogService _LogService)
 {
     this._SabreConnector = _SabreConnector;
     this._LogService     = _LogService;
 }