Example #1
0
 public CommentRepository(IMapper mapper, IAppNoSqlBaseRepository <CommentEntity> commentRep)
 {
     _mapper     = mapper;
     _commentRep = commentRep;
 }
Example #2
0
 public UserRepository(IMapper mapper, IAppNoSqlBaseRepository <UserEntity> userRep)
 {
     _mapper  = mapper;
     _userRep = userRep;
 }
Example #3
0
 public PostRepository(IMapper mapper, IAppNoSqlBaseRepository <PostEntity> postRep)
 {
     _mapper  = mapper;
     _postRep = postRep;
 }