Tagged Questions
2
votes
0answers
73 views
ServiceStack Funq MVC html helper extension
I'm trying to create a MVC html helper extension that have to be declared as a static class, something like this:
public static class PhotoExtension
{
public static IPhotoService PhotoService { ...
2
votes
1answer
295 views
Constructor Injection with ServiceStack MVC Powerpack + Funq
I'm playing with the demo MVC 3 Internet Application template and I installed the ServiceStack.Host.Mvc NuGet package. I'm having issues with Funq performing constructor injection.
The following ...