Example #1
0
 public AuthController(IAuthRepository repo, ISingleUserRepository userRepo, IConfiguration config, IMapper mapper)
 {
     _config   = config;
     _mapper   = mapper;
     _repo     = repo;
     _userRepo = userRepo;
 }
 public WeightsController(ISingleUserRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Example #3
0
 public UsersController(IDatingRepository repo, ISingleUserRepository userRepo, IMapper mapper)
 {
     _repo     = repo;
     _userRepo = userRepo;
     _mapper   = mapper;
 }