Пример #1
0
 public TweetBL(ITweetsRepository tweetsRepository, ITweetMapper tweetMapper)
 {
     BasicConfigurator.Configure();
     this.tweetsRepository = tweetsRepository;
     this.tweetMapper      = tweetMapper;
 }
Пример #2
0
 public TweetRepository(ITweetMapper tweetMapper)
 {
     _tweetMapper = tweetMapper;
 }