mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
25 lines
872 B
C#
25 lines
872 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Payments;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding;
|
|
|
|
namespace BTCPayServer.ModelBinders
|
|
{
|
|
public class DefaultModelBinderProvider : IModelBinderProvider
|
|
{
|
|
public IModelBinder GetBinder(ModelBinderProviderContext context)
|
|
{
|
|
if (context.Metadata.ModelType == typeof(decimal) || context.Metadata.ModelType == typeof(decimal?))
|
|
return new InvariantDecimalModelBinder();
|
|
if (context.Metadata.ModelType == typeof(PaymentMethodId))
|
|
return new PaymentMethodIdModelBinder();
|
|
if (context.Metadata.ModelType == typeof(WalletIdModelBinder))
|
|
return new ModelBinders.WalletIdModelBinder();
|
|
return null;
|
|
}
|
|
}
|
|
}
|