Exemple #1
0
 public AuthController(IAuthRepository authRepository, IConfiguration configuration, IPlayAppRepository playAppRepository, IMapper mapper)
 {
     _authRepository    = authRepository;
     _configuration     = configuration;
     _playAppRepository = playAppRepository;
     _mapper            = mapper;
 }
 public SongController(IPlayAppRepository playAppRepository, IMapper mapper)
 {
     _playAppRepository = playAppRepository;
     _mapper            = mapper;
 }
 public PlayAppController(IPlayAppRepository playAppRepository, IAuthRepository authRepository, IMapper mapper)
 {
     _playAppRepository = playAppRepository;
     _authRepository    = authRepository;
     _mapper            = mapper;
 }