8 lines
200 B
C#
8 lines
200 B
C#
|
namespace System.Web.Mvc {
|
|||
|
using System;
|
|||
|
|
|||
|
public abstract class ValueProviderFactory {
|
|||
|
public abstract IValueProvider GetValueProvider(ControllerContext controllerContext);
|
|||
|
}
|
|||
|
}
|