コード例 #1
0
 public CommentService(IPostUnitOfWork postUnitOfWork)
 {
     _postUnitOfWork = postUnitOfWork;
 }
コード例 #2
0
 public PostService(IPostUnitOfWork postUnitOfWork)
 {
     _postUnitOfWork = postUnitOfWork;
 }
コード例 #3
0
 public CatergoryService(IPostUnitOfWork postUnitOfWork, ICurrentUserService currentUserService)
 {
     _postUnitOfWork     = postUnitOfWork;
     _currentUserService = currentUserService;
 }