public CartRepo(ApplicationDbContext context, IUserDF repoUser, IConfiguration config)
        {
            _context = context;

            _repoUser = repoUser;

            _config = config;
        }
        public ProductRepo(ApplicationDbContext context, IUserDF repoUser, IHostingEnvironment hostingEnv, IConfiguration config, IMapper mapper)
        {
            _context = context;

            _hostingEnv = hostingEnv;

            _repoUser = repoUser;

            _config = config;
            _mapper = mapper;
        }
 public UserController(IUserDF repo)
 {
     _repo = repo;
 }