Esempio n. 1
0
        public AdminController(UserManager <AppUser> userManager, IUnitOfWork unitOfWork, IphotoService photoService)
        {
            _photoService = photoService;
            _unitOfWork   = unitOfWork;

            _userManager = userManager;
        }
Esempio n. 2
0
 public UsersController(IUnitOfWork unitOfWork, IMapper mapper, IphotoService photoService)
 {
     _unitOfWork   = unitOfWork;
     _photoService = photoService;
     _mapper       = mapper;
 }
Esempio n. 3
0
 public UsersController(IUserRepository userRepository, IMapper mapper, IphotoService photoService)
 {
     _photoService   = photoService;
     _mapper         = mapper;
     _userRepository = userRepository;
 }