Merge pull request #249 from pcc/xgetinputfocus
[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 }