Merge pull request #757 from mlintner/master
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / ValueProviderFactory.cs
1 namespace System.Web.Mvc {
2     using System;
3
4     public abstract class ValueProviderFactory {
5         public abstract IValueProvider GetValueProvider(ControllerContext controllerContext);
6     }
7 }