public PerformanceController(PerfomanceRepository _perfoRepository, ClienteRepository _clienteRepository,
                              RodaRepository _rodaRepository, CorVeiculoRepository _corVeiculoRepository, BancoRepository _bancoRepository)
 {
     this._perfoRepository      = _perfoRepository;
     this._clienteRepository    = _clienteRepository;
     this._rodaRepository       = _rodaRepository;
     this._corVeiculoRepository = _corVeiculoRepository;
     this._bancoRepository      = _bancoRepository;
 }
 public VendaController(VendaRepository _vendaRepository, ClienteRepository _clienteRepository, VeiculoRepository _veiculoRepository,
                        FormaPagamentoRepository _formaPagamentoRepository, EnderecoRepository _enderecoRepository, PerfomanceRepository _perfomanceRepository,
                        RodaRepository _rodaRepository, BancoRepository _bancoRepository, CorVeiculoRepository _corRepository)
 {
     this._clienteRepository        = _clienteRepository;
     this._vendaRepository          = _vendaRepository;
     this._veiculoRepository        = _veiculoRepository;
     this._formaPagamentoRepository = _formaPagamentoRepository;
     this._enderecoRepository       = _enderecoRepository;
     this._perfomanceRepository     = _perfomanceRepository;
     this._rodaRepository           = _rodaRepository;
     this._bancoRepository          = _bancoRepository;
     this._corRepository            = _corRepository;
 }