14 lines
368 B
C#
14 lines
368 B
C#
|
namespace System.Web.Mvc {
|
|||
|
|
|||
|
public static class ModelBinderProviders {
|
|||
|
|
|||
|
private readonly static ModelBinderProviderCollection _binderProviders = new ModelBinderProviderCollection {
|
|||
|
};
|
|||
|
|
|||
|
public static ModelBinderProviderCollection BinderProviders {
|
|||
|
get {
|
|||
|
return _binderProviders;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|