Hello i have some problem with my Castle windsor project.
When im trying to pass some parameters by these method:
container.Resolve<ILogin>(new { Login = textBox1.Text, password =textBox2.Text });
the values of Login and password are set only once. Next, when im changing textbox values, and click on button once again, the values of login, and password are still the same. How can i change these parameters? Thank you