示例#1
0
 public FireplaceController(
     IFireplaceService fireplaceService,
     ICommentService commentService,
     ISuggestProduct suggestService)
 {
     this.fireplaceService = fireplaceService;
     this.commentService   = commentService;
     this.suggestService   = suggestService;
 }
示例#2
0
 public FireplaceService(
     IDeletableEntityRepository <Fireplace_chamber> fireplaceRepository,
     IGroupService groupService,
     IProductService productService,
     ICloudinaryService cloudinaryService,
     ISuggestProduct suggestProduct)
 {
     this.fireplaceRepository = fireplaceRepository;
     this.groupService        = groupService;
     this.productService      = productService;
     this.cloudinaryService   = cloudinaryService;
     this.suggestProduct      = suggestProduct;
 }