This is what my service contructor looks like:
public Service(string path)
and I'm configuring unity like this:
IUnityContainer container = new UnityContainer();
container.RegisterType<IService, Service>();
which of course is not correct. The path parameter needs to be specified, and I would like this to be configurable from the AppSettings so in this case I would be able to set it during configuration.
How do I do this?