Ejemplo n.º 1
0
 public UserService(
     IUnitOfWork unitOfWork,
     IStorageProvider storageProvider,
     IMessageService messageService,
     IDataProtectorUserTokenService dataProtectorUserTokenService,
     IBysSession bysSession)
 {
     _unitOfWork      = unitOfWork;
     _storageProvider = storageProvider;
     _messageService  = messageService;
     _dataProtectorUserTokenService = dataProtectorUserTokenService;
     _bysSession = bysSession;
 }
Ejemplo n.º 2
0
 public LoginService(
     IUnitOfWork unitOfWork,
     ISendEmailService sendEmailService,
     IDataProtectorUserTokenService dataProtectorUserTokenService,
     IBysSession bysSession,
     IMessageService messageService)
 {
     _unitOfWork       = unitOfWork;
     _sendEmailService = sendEmailService;
     _dataProtectorUserTokenService = dataProtectorUserTokenService;
     _bysSession     = bysSession;
     _messageService = messageService;
 }