コード例 #1
0
 public CommentAPIController(ICommentService commentService, APIIModelDataMapper dataMapper)
 {
     this.commentService = commentService;
     this.dataMapper     = dataMapper;
 }
コード例 #2
0
ファイル: CategoryAPIController.cs プロジェクト: dashluu/Blog
 public CategoryAPIController(ICategoryService categoryService, APIIModelDataMapper dataMapper)
 {
     this.categoryService = categoryService;
     this.dataMapper      = dataMapper;
 }
コード例 #3
0
ファイル: PostAPIController.cs プロジェクト: dashluu/Blog
 public PostAPIController(IPostService postService, APIIModelDataMapper dataMapper)
 {
     this.postService = postService;
     this.dataMapper  = dataMapper;
 }
コード例 #4
0
ファイル: ImageAPIController.cs プロジェクト: dashluu/Blog
 public ImageAPIController(IImageService imageService, IHashService hashService, APIIModelDataMapper dataMapper)
 {
     this.imageService = imageService;
     this.hashService  = hashService;
     this.dataMapper   = dataMapper;
 }