Example #1
0
 public MessagesController(IDatingRepository context, IMapper mapper)
 {
     this.dataContext = context;
     this.mapper      = mapper;
 }
Example #2
0
 public UserService(IDatingRepository datingRepository, IMapper mapper)
 {
     this._datingRepository = datingRepository;
     this._mapper           = mapper;
 }
Example #3
0
 public UsersController(IDatingRepository repo, IMapper mapper)
 {
     this.mapper = mapper;
     this.repo   = repo;
 }
Example #4
0
 public DatingService(IDatingRepository datingRepository)
 {
     this.datingRepository = datingRepository;
 }
 public MessagesController(IDatingRepository datingRepo, IMapper mapper)
 {
     _mapper     = mapper;
     _datingRepo = datingRepo;
 }
Example #6
0
 public UsersController(IDatingRepository datingRepository, IMapper autoMapper)
 {
     _datingRepository = datingRepository;
     _autoMapper       = autoMapper;
 }
Example #7
0
 public UsersController(IDatingRepository repository, IMapper mapper)
 {
     this._mapper     = mapper;
     this._repository = repository;
 }
 public UsersController(IDatingRepository datingRepository, IUnitOfWork unitOfWork, IMapper mapper)
 {
     _datingRepository = datingRepository;
     _unitOfWork       = unitOfWork;
     _mapper           = mapper;
 }
Example #9
0
 public PhotosController(IDatingRepository repo, IMapper mapper, IConfiguration configuration)
 {
     _mapper        = mapper;
     _configuration = configuration;
     _repo          = repo;
 }
Example #10
0
 public UsersController(IDatingRepository repo)
 {
     this._repo = repo;
 }
Example #11
0
 public UsersController(IDatingRepository _repo, IMapper _mapper)
 {
     this._mapper = _mapper;
     this._repo   = _repo;
 }
 public UsersController(IDatingRepository repo, IMapper mapper)
 {
     _userRepository = repo;
     _mapper         = mapper;
 }
 public MessagesController(IDatingRepository rep, IMapper mapper)
 {
     this.mapper = mapper;
     this.rep    = rep;
 }
Example #14
0
 public LogLastActivity(IDatingRepository repo)
 {
     _repo = repo;
 }
Example #15
0
 public UsersController(IDatingRepository repo) => _repo = repo;
Example #16
0
 public MessageController(IDatingRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Example #17
0
 public UsersController(IDatingRepository repo, IMapper mapper, DataContext context)
 {
     _context = context;
     _mapper  = mapper;
     _repo    = repo;
 }
Example #18
0
 public LookupService(IDatingRepository repo)
 {
     _repo = repo;
 }
Example #19
0
 public UsersController(IDatingRepository iDatingRepository,
                        IMapper mapper)
 {
     this._iDatingRepository = iDatingRepository;
     this._mapper            = mapper;
 }
Example #20
0
 public MessagesController(IDatingRepository repo, IMapper mapper, IHubContext <MessageHub> messageHub)
 {
     _mapper     = mapper;
     _messageHub = messageHub;
     _repo       = repo;
 }
Example #21
0
 public UsersController(IDatingRepository datingRepository, IMapper mapper)
 {
     _mapper           = mapper;
     _datingRepository = datingRepository;
 }
 public UsersController(IDatingRepository datingRepository, IMapper mapper)
 {
     this.datingRepository = datingRepository;
     this.mapper           = mapper;
 }
Example #23
0
 public PhotosController(IDatingRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Example #24
0
 public MessagesController(IDatingRepository _repo, IMapper _mapper)
 {
     repo   = _repo;
     mapper = _mapper;
 }
 public MessagesController(IDatingRepository repo, IMapper mapper)
 {
     this._repo   = repo;
     this._mapper = mapper;
 }
Example #26
0
 public UsersController(IDatingRepository datingRepository, IMapper mapper)
 {
     _datingRepository = datingRepository ?? throw new System.ArgumentNullException(nameof(datingRepository));
     _mapper           = mapper ?? throw new System.ArgumentNullException(nameof(mapper));
 }
Example #27
0
 public MessagesController(IDatingRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
 public LogUserActivityFilter(IDatingRepository repository)
 {
     _repository = repository;
 }
Example #29
0
 public UsersController(IDatingRepository repo, IMapper mapper)
 {
     _mapper = mapper;
     _repo   = repo;
 }
 public MessagesController(IDatingRepository authRepository, IMapper mapper, IHubContext <MessageHub> hub)
 {
     this.mapper           = mapper;
     this.datingRepository = authRepository;
     _hub = hub;
 }