public UserService(IRepositoryWrapper repoWrapper,
                    IMapper mapper,
                    IUserPersonalDataService userPersonalDataService,
                    IUserBlobStorageRepository userBlobStorage,
                    IWebHostEnvironment env,
                    IUniqueIdService uniqueId)
 {
     _repoWrapper             = repoWrapper;
     _mapper                  = mapper;
     _userPersonalDataService = userPersonalDataService;
     _userBlobStorage         = userBlobStorage;
     _env      = env;
     _uniqueId = uniqueId;
 }
Example #2
0
 public UserService(IRepositoryWrapper repoWrapper, UserManager <User> userManager, IMapper mapper, IWorkService workService,
                    IEducationService educationService, IUserBlobStorageRepository userBlobStorage, IWebHostEnvironment env, IUserManagerService userManagerService,
                    IConfirmedUsersService confirmedUsersService)
 {
     _repoWrapper      = repoWrapper;
     _userManager      = userManager;
     _mapper           = mapper;
     _workService      = workService;
     _educationService = educationService;
     _userBlobStorage  = userBlobStorage;
     _env = env;
     _userManagerService    = userManagerService;
     _confirmedUsersService = confirmedUsersService;
 }