public HistoricoService(DbContextUser user, IUserService userService, ICotizacionesService cotizaciones, ICarteraService cartera)
 {
     _carteraService      = cartera;
     _cotizacionesService = cotizaciones;
     _userService         = userService;
     _context             = user;
 }
        //[FromHeader(Name = "apiKey")]
        //[Required]
        //public string apiKey { get; set; }

        public CarteraController(ICarteraService carteraService, ILogger <CarteraController> logger)
        {
            _carteraService = carteraService;
            _logger         = logger;
        }
 public ClienteController(ICarteraService carteraService)
 {
     this._carteraService = carteraService;
 }
Ejemplo n.º 4
0
 public EspecieController(IEspecieService especie, ICarteraService cartera)
 {
     carteraService = cartera;
     especieService = especie;
 }
 public CarterasController(ICarteraService cartera, IUserService userService)
 {
     _userService   = userService;
     carteraService = cartera;
 }