public BlogPostCommentService( IBlogPostCommentRepository BlogPostCommentRepository )
 {
     _repository = BlogPostCommentRepository;
 }
Esempio n. 2
0
 public BlogService(IBlogPostRepository blogRepository, IBlogPostCommentRepository blogCommentRepository, IUnitOfWork unitOfWork)
 {
     _blogRepository        = blogRepository;
     _blogCommentRepository = blogCommentRepository;
     _unitOfWork            = unitOfWork;
 }