Beispiel #1
0
 public CommentController(
     ICommentService commentService,
     IFireplaceService fireplaceService)
 {
     this.commentService   = commentService;
     this.fireplaceService = fireplaceService;
 }
Beispiel #2
0
 public FireplaceController(
     IFireplaceService fireplaceService,
     UserManager <ApplicationUser> userManager)
 {
     this.fireplaceService = fireplaceService;
     this.userManager      = userManager;
 }
Beispiel #3
0
 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;
 }