Beispiel #1
0
 public LikeTwithHandler(ITwithRepository twithRepository, IUserRepository userRepository)
 {
     _twithRepository = twithRepository;
     _userRepository  = userRepository;
 }
Beispiel #2
0
 public UnlikeTwithHandler(ITwithRepository twithRepository)
 {
     _twithRepository = twithRepository;
 }
Beispiel #3
0
 public UpdateTwithHandler(ITwithRepository twithRepository)
 {
     _twithRepository = twithRepository;
 }
Beispiel #4
0
 public UpdateAuthorPersonalData(ITwithRepository repository)
 {
     _repository = repository;
 }
Beispiel #5
0
 public TwithUnlikedHandler(ITwithRepository repository) : base(repository)
 {
 }
Beispiel #6
0
 protected RecountTwithLikes(ITwithRepository repository)
 {
     _repository = repository;
 }
Beispiel #7
0
 public DeleteTwithHandler(ITwithRepository repository)
 {
     _repository = repository;
 }