Exemple #1
0
 public CategoryService(ICategoryRepository categoryRepository, IServiceDataMapper dataMapper, IHashService hashService)
 {
     this.categoryRepository = categoryRepository;
     this.dataMapper         = dataMapper;
     this.hashService        = hashService;
 }
Exemple #2
0
 public PostService(IPostRepository postRepository, IServiceDataMapper dataMapper, IHashService hashService)
 {
     this.postRepository = postRepository;
     this.dataMapper     = dataMapper;
     this.hashService    = hashService;
 }
Exemple #3
0
 public CommentService(ICommentRepository commentRepository, IServiceDataMapper dataMapper, IHashService hashService)
 {
     this.commentRepository = commentRepository;
     this.dataMapper        = dataMapper;
     this.hashService       = hashService;
 }