public TestController(ICloudStorage cloudStorage, IConfiguration configuration, IAuthRepository authRepository, IQRCodeGeneration qRCodeGeneration, ICipherService cipher, DataContext context)
 {
     _context          = context;
     _cipher           = cipher;
     _qRCodeGeneration = qRCodeGeneration;
     _authRepository   = authRepository;
     _cloudStorage     = cloudStorage;
     _configuration    = configuration;
 }
 public AuthService(IMapper mapper, IConfiguration config, IAuthRepository repo, HttpClient httpClient,
                    IQRCodeGeneration qRCodeGeneration, IAmbassadorRepository ambRepo)
 {
     _ambRepo          = ambRepo;
     _qRCodeGeneration = qRCodeGeneration;
     _mapper           = mapper;
     _config           = config;
     _repo             = repo;
     _httpClient       = httpClient;
 }