コード例 #1
0
ファイル: CategoryService.cs プロジェクト: dashluu/Blog
 public CategoryService(ICategoryRepository categoryRepository, IServiceDataMapper dataMapper, IHashService hashService)
 {
     this.categoryRepository = categoryRepository;
     this.dataMapper         = dataMapper;
     this.hashService        = hashService;
 }
コード例 #2
0
ファイル: PostService.cs プロジェクト: dashluu/Blog
 public PostService(IPostRepository postRepository, IServiceDataMapper dataMapper, IHashService hashService)
 {
     this.postRepository = postRepository;
     this.dataMapper     = dataMapper;
     this.hashService    = hashService;
 }
コード例 #3
0
ファイル: CommentService.cs プロジェクト: dashluu/Blog
 public CommentService(ICommentRepository commentRepository, IServiceDataMapper dataMapper, IHashService hashService)
 {
     this.commentRepository = commentRepository;
     this.dataMapper        = dataMapper;
     this.hashService       = hashService;
 }