示例#1
0
 public static List <T> ProcessMethodBulk <T>(
     Type clazz,
     string methodName,
     string param1,
     bool useCache, SDK sdk)
     where T : MPBase
 {
     return(MPBase.ProcessMethodBulk <T>(clazz, methodName, new Dictionary <string, string>()
     {
         {
             nameof(param1),
             param1
         }
     }, useCache, sdk));
 }
示例#2
0
        public static List <T> ProcessMethodBulk <T>(Type clazz, string methodName, bool useCache, SDK sdk) where T : MPBase
        {
            Dictionary <string, string> mapParams = (Dictionary <string, string>)null;

            return(MPBase.ProcessMethodBulk <T>(clazz, methodName, mapParams, useCache, sdk));
        }
 public static List <MercadoPago.Customer> Search(
     Dictionary <string, string> filters,
     bool useCache, SDK sdk)
 {
     return(MPBase.ProcessMethodBulk <MercadoPago.Customer>(typeof(MercadoPago.Customer), nameof(Search), filters, useCache, sdk));
 }