Beispiel #1
0
 public Receive()
 {
     _repository = new AssociatedUriRepository(new Connnection());
 }
 public AssociatedUriDeleteService(IAssociatedUriRepository uriRepository, IUserRepository userRepository)
 {
     _uriRepository  = uriRepository;
     _userRepository = userRepository;
 }
 public UriShortener(IAssociatedUriRepository repository, IHashGeneretor hashGeneretor)
 {
     _repository    = repository;
     _hashGeneretor = hashGeneretor;
 }
 public ShortUriRequestCounter(IAssociatedUriRepository repository)
 {
     _repository = repository;
 }
Beispiel #5
0
 public UserShortUriStatistics(IAssociatedUriRepository repository)
 {
     _repository = repository;
 }
Beispiel #6
0
 public ShortUriDecoder(IAssociatedUriRepository repository)
 {
     _repository = repository;
 }