Example #1
0
 public TextReader(
     ISqlTextRepository textRepository,
     IMapper <Text, TextReadModel> textReadMapper,
     IDbTransaction dbTransaction,
     ILogRepository logRepository,
     IAuthenticationHelper authenticationHelper)
 {
     this.textRepository       = textRepository;
     this.textReadMapper       = textReadMapper;
     this.dbTransaction        = dbTransaction;
     this.logRepository        = logRepository;
     this.authenticationHelper = authenticationHelper;
 }
Example #2
0
 public TextCounter(ISqlTextRepository textRepository)
 {
     this.textRepository = textRepository;
 }