public VendaAppService(IUnitOfWork uow, IVendaService service, IDiscoVendaAppService discoVendaAppService, IDiscoAppService discoAppService, ICashBackAppService cashBackAppService, IMapper mapper) : base(uow, service, mapper)
 {
     _service = service;
     _discoVendaAppService = discoVendaAppService;
     _discoAppService      = discoAppService;
     _cashBackAppService   = cashBackAppService;
 }
 public DiscoVendaController(IDiscoVendaAppService discoVendaAppService, IVendaAppService vendaAppService, IDiscoAppService discoAppService, ICashBackAppService cashBackAppService, IMapper mapper)
 {
     _vendaAppService      = vendaAppService;
     _discoVendaAppService = discoVendaAppService;
     _mapper             = mapper;
     _discoAppService    = discoAppService;
     _cashBackAppService = cashBackAppService;
 }
Esempio n. 3
0
 public SpotifyAppService(ISpotifyService spotifyService, IDiscoAppService discoAppService, IMapper mapper)
 {
     _spotifyService  = spotifyService;
     _mapper          = mapper;
     _discoAppService = discoAppService;
 }
 public DiscoController(IDiscoAppService discoAppService, ISpotifyAppService spotifyService, IOptions <SpotifyCredentialsViewModel> spotifyCredential)
 {
     _discoAppService       = discoAppService;
     this.spotifyCredential = spotifyCredential;
     _spotifyService        = spotifyService;
 }