public UserService(
     IEncypterService encypterService,
     IMapper mapper,
     IUserRepository userRepository)
 {
     this.encypterService = encypterService;
     this.mapper          = mapper;
     this.userRepository  = userRepository;
 }
示例#2
0
 public RegisterUserCommandHandler(
     IEncypterService encypterService,
     IMapper mapper,
     IUserRepository userRepository
     )
 {
     this.encypterService = encypterService;
     this.mapper          = mapper;
     this.userRepository  = userRepository;
 }