public EstacionServicioController(
     IEstacionServicioApplication estacionServicioApplication,
     ISSOApplication sSOApplication,
     ILogApplication logApplication,
     IJwtApplication jwtApplication
     )
 {
     this._estacionServicioApplication = estacionServicioApplication;
     this._sSOApplication = sSOApplication;
     this._logApplication = logApplication;
     this._jwtApplication = jwtApplication;
 }
 public ComboController(
     IEstacionServicioApplication estacionServicioApplication,
     ISucursalESApplication sucursalEsApplication,
     ICombustibleApplication combustibleApplication,
     IRutaApplication rutaApplication,
     IGeneralApplication generalApplication,
     IJwtApplication jwtApplication,
     ILogApplication logApplication)
 {
     this._estacionServicioApplication = estacionServicioApplication;
     this._sucursalEsApplication       = sucursalEsApplication;
     this._combustibleApplication      = combustibleApplication;
     this._rutaApplication             = rutaApplication;
     this._generalApplication          = generalApplication;
     this._jwtApplication = jwtApplication;
     this._logApplication = logApplication;
 }