2021-05-06 13:28:02 +02:00
|
|
|
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();
|
2021-05-14 08:46:38 +02:00
|
|
|
return null;
|
2021-05-06 13:28:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|