public IdentityController(IPasswordEngine passwordEngine, IUnitOfWork unit, IMapper mapper, IOptions <Identity> identity) { _Mapper = mapper; _Unit = unit; Identity_ = identity; PasswordEngine_ = passwordEngine; }
public IdentityController(IPasswordEngine PasswordEngine, IUnitOfWork Unit, IMapper mapper, IOptions <Identity> Identity) { _Mapper = mapper; _Unit = Unit; Identity_ = Identity; PasswordEngine_ = PasswordEngine; }
public UserServises(IPasswordEngine passwordEngine, IUnitOfWork unit, IMapper mapper, IViewModelEngine viewModelEngine, IOptions <Identity> Identity) { _Mapper = mapper; _UOF = unit; _ViewModelEngine = viewModelEngine; _PasswordEngine = passwordEngine; _identity = Identity; }
public UserServises(IPasswordEngine PasswordEngine, IUnitOfWork Unit, IMapper mapper, IViewModelEngine ViewModelEngine, IOptions <Identity> Identity) { _mapper = mapper; _UOF = Unit; _viewModelEngine = ViewModelEngine; _passwordEngine = PasswordEngine; _identity = Identity; }