public TaxiOrdersController(IGetATaxiData data, IOrderBridge ordersBridge, ITaxiesBridge taxiesBridge)
     : base(data)
 {
     this._ordersBridge = ordersBridge;
     this._taxiesBrigde = taxiesBridge;
 }
 public TaxiController(IGetATaxiData data, ITaxiesBridge taxiesBridge)
     : base(data)
 {
     this.taxiesBridge = taxiesBridge;
 }