public CarroController(IOptions <Parametros> connectionString,
                        Parametros parametros,
                        IMapper mapper,
                        IToastNotification toastNotification,
                        ILogger <CarroController> logger,
                        CarroBLL carroBLL
                        ) : base(connectionString, mapper, toastNotification)
 {
     this.parametros = parametros;
     this.logger     = logger;
     this.carroBLL   = carroBLL;
 }
 public CarroController()
 {
     bll = new CarroBLL();
 }