Ejemplo n.º 1
0
 public AdminController(
     IFileService fileService,
     IFramesService framesService,
     ICrossesService crossesService,
     ITextsService textService,
     IUserService userService)
 {
     this.fileService    = fileService;
     this.framesService  = framesService;
     this.crossesService = crossesService;
     this.textService    = textService;
     this.userService    = userService;
 }
Ejemplo n.º 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;
 }