Example #1
0
 public ObituaryController(
     IObituaryService obituaryService,
     IUserPictureService pictureService,
     IUserService userService)
 {
     this.obituaryService    = obituaryService;
     this.userPictureService = pictureService;
     this.userService        = userService;
 }
Example #2
0
 public MakeItController(
     IFramesService framesService,
     ICrossesService crossesService,
     ITextsService textsService,
     IObituaryService obituaryService,
     IFileService fileService,
     IUserPictureService userPictureService,
     IWebHostEnvironment environment)
 {
     this.framesService      = framesService;
     this.crossesService     = crossesService;
     this.textsService       = textsService;
     this.obituaryService    = obituaryService;
     this.fileService        = fileService;
     this.userPictureService = userPictureService;
     this.environment        = environment;
 }