Exemple #1
0
 public ObituaryController(
     IObituaryService obituaryService,
     IUserPictureService pictureService,
     IUserService userService)
 {
     this.obituaryService    = obituaryService;
     this.userPictureService = pictureService;
     this.userService        = userService;
 }
Exemple #2
0
 public UserPicturesController(
     IUserPictureService userPictureService,
     IFileService fileService,
     IUserService userService)
 {
     this.userPictureService = userPictureService;
     this.fileService        = fileService;
     this.userService        = userService;
 }
Exemple #3
0
 public UserPictureController(
     Func <IUserManager> userManagerFactory,
     Func <IEmployeeProvider> employeeProviderFactory,
     ICurrentUserProvider currentUserProvider,
     IUserPictureService userPictureService)
 {
     _userManagerFactory      = userManagerFactory;
     _employeeProviderFactory = employeeProviderFactory;
     _currentUserProvider     = currentUserProvider;
     _userPictureService      = userPictureService;
 }
Exemple #4
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;
 }
Exemple #5
0
 public Functions(IUserPictureService userPictureService)
 {
     this.userPictureService = userPictureService;
 }
Exemple #6
0
 public StudentsController(SchoolContext db, IUserPictureService userPictureService)
 {
     this.db = db;
     this.userPictureService = userPictureService;
 }
Exemple #7
0
 public StudentsController(SchoolContext context, IUserPictureService userPictureService)
 {
     this.context            = context;
     this.userPictureService = userPictureService;
 }