public CommentService(IPostUnitOfWork postUnitOfWork)
 {
     _postUnitOfWork = postUnitOfWork;
 }
Ejemplo n.º 2
0
 public PostService(IPostUnitOfWork postUnitOfWork)
 {
     _postUnitOfWork = postUnitOfWork;
 }
Ejemplo n.º 3
0
 public CatergoryService(IPostUnitOfWork postUnitOfWork, ICurrentUserService currentUserService)
 {
     _postUnitOfWork     = postUnitOfWork;
     _currentUserService = currentUserService;
 }