public SpotifyHandle(IHttpHandle httpHandle, IJsonHandle jsonHandle, IOptions <SpotifySettings> spotifySettings, IDiscoRepository discoRepository)
 {
     _httpHandle      = httpHandle;
     _jsonHandle      = jsonHandle;
     _spotifySettings = spotifySettings.Value;
     _discoRepository = discoRepository;
 }
 public SpotifyService(IHttpService httpService,
                       IJsonService jsonService,
                       IOptions <SpotifySettings> spotifySettings,
                       IDiscoRepository discoRepository)
 {
     _httpService     = httpService;
     _jsonService     = jsonService;
     _spotifySettings = spotifySettings.Value;
     _discoRepository = discoRepository;
 }
 public VendaAppService(IClienteRepository clienteRepository,
                        IDiscoRepository discoRepository,
                        IGeneroRepository generoRepository,
                        IVendaRepository vendaRepository,
                        IMapper mapper,
                        IUnitOfWork unitOfWork)
 {
     _clienteRepository = clienteRepository;
     _discoRepository   = discoRepository;
     _generoRepository  = generoRepository;
     _vendaRepository   = vendaRepository;
     _mapper            = mapper;
     _unitOfWork        = unitOfWork;
 }
Beispiel #4
0
 public DiscosController(IDiscoRepository _repo)
 {
     // lo llamo y lo inicializo en el controlador
     this.repo = _repo;
 }
Beispiel #5
0
 public CatalogoAppService(IDiscoRepository discoRepository,
                           IGeneroRepository generoRepository)
 {
     _discoRepository  = discoRepository;
     _generoRepository = generoRepository;
 }
 public DiscosController(IDiscoRepository repository)
 {
     this.repository = repository;
 }
 public CatalogoAppService(IDiscoRepository discoRepository, IMapper mapper)
 {
     _discoRepository = discoRepository;
     _mapper          = mapper;
 }
Beispiel #8
0
 public DiscoController(IDiscoRepository <Member> discoRepository)
 {
     _discoRepository = discoRepository;
 }
 public DiscoService(IDiscoRepository repository)
     : base(repository)
 {
     _repository = repository;
 }
 public VendaAppService(IVendaRepository vendaRepository, IDiscoRepository discoRepository, ICashbackRepository cashbackRepository)
 {
     _vendaRepository    = vendaRepository;
     _discoRepository    = discoRepository;
     _cashbackRepository = cashbackRepository;
 }