Exemplo n.º 1
0
 public static string PrepareRequest(MethodType methodType, string key, GetBy getBy, string value, DateTime date)
 {
     return(string.Concat(methodType.GetParameters(), "?key=", key, "&", getBy.PrepareQueryParameter(value), "&", ReqestFor.Date(date)));
 }
Exemplo n.º 2
0
 public static string PrepareRequest(MethodType methodType, string key, GetBy getBy, string value, Days ofDays)
 {
     return(string.Concat(methodType.GetParameters(), "?key=", key, "&", getBy.PrepareQueryParameter(value), "&", ofDays.PrepareDays()));
 }
Exemplo n.º 3
0
 public static string PrepareRequest(MethodType methodType, string key, GetBy getBy, string value)
 {
     return string.Concat(methodType.GetParameters(), "?key=", key, "&", getBy.PrepareQueryParameter(value));
 }