示例#1
0
 public CommentAPIController(ICommentService commentService, APIIModelDataMapper dataMapper)
 {
     this.commentService = commentService;
     this.dataMapper     = dataMapper;
 }
示例#2
0
 public CategoryAPIController(ICategoryService categoryService, APIIModelDataMapper dataMapper)
 {
     this.categoryService = categoryService;
     this.dataMapper      = dataMapper;
 }
示例#3
0
 public PostAPIController(IPostService postService, APIIModelDataMapper dataMapper)
 {
     this.postService = postService;
     this.dataMapper  = dataMapper;
 }
示例#4
0
 public ImageAPIController(IImageService imageService, IHashService hashService, APIIModelDataMapper dataMapper)
 {
     this.imageService = imageService;
     this.hashService  = hashService;
     this.dataMapper   = dataMapper;
 }