public CommentController( ICommentService commentService, IFireplaceService fireplaceService) { this.commentService = commentService; this.fireplaceService = fireplaceService; }
public FireplaceController( IFireplaceService fireplaceService, UserManager <ApplicationUser> userManager) { this.fireplaceService = fireplaceService; this.userManager = userManager; }
public FireplaceController( IFireplaceService fireplaceService, ICommentService commentService, ISuggestProduct suggestService) { this.fireplaceService = fireplaceService; this.commentService = commentService; this.suggestService = suggestService; }
public CommentService( IDeletableEntityRepository <Comment> commentRepository, IProductService productService, IFireplaceService fireplaceService, IEmailSender emailSender) { this.commentRepository = commentRepository; this.productService = productService; this.fireplaceService = fireplaceService; this.emailSender = emailSender; }
public DashboardController( ISettingsService settingsService, IForUsService forUsService, IFireplaceService fireplaceService, IFinishedModelService finishedModelService, IProjectService projectService, IAccessoriesService accessoriesService) { this.settingsService = settingsService; this.forUsService = forUsService; this.fireplaceService = fireplaceService; this.finishedModelService = finishedModelService; this.projectService = projectService; this.accessoriesService = accessoriesService; }