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