Example #1
0
        public PhotosController(IDatingAppRepo repo, IMapper mapper,
                                IOptions <CloudinarySettings> cloudinaryConfig)
        {
            _cloudinaryConfig = cloudinaryConfig;
            _mapper           = mapper;
            _repo             = repo;

            Account acc = new Account(
                _cloudinaryConfig.Value.CloudName,
                _cloudinaryConfig.Value.ApiKey,
                _cloudinaryConfig.Value.ApiSecret
                );

            _cloudinary = new Cloudinary(acc);
        }
 public MessagesController(IDatingAppRepo repo, IMapper mapper)
 {
     this._mapper = mapper;
     this._repo   = repo;
 }
Example #3
0
 public UsersController(IDatingAppRepo repo, IMapper mapper)
 {
     _mapper = mapper;
     _repo   = repo;
 }