//METODO DONDE SE CONCATENAN LOS PARAMETROS PASADOS POR EL GET PARA OBTENER EL RESUMEN private string ParametrosResumen(int offSet, int limit, string tipoIdReceptor) { string getParametros = string.Empty; getParametros = EngineData.offset + offSet.ToString(); getParametros = getParametros + EngineData.limit + limit.ToString(); string tipoEmisorNumero = Valor.TipoEmisor().Substring(Valor.TipoEmisor().Length - 2, 2);//Quito la palabra Item al TipoEmisor getParametros = getParametros + EngineData.emisor + tipoEmisorNumero + Valor.CedulaEmisor(); getParametros = getParametros + EngineData.receptor + tipoIdReceptor; return(getParametros); }
public string CedulaEmisor(string clave) { return(clave + Valor.CedulaEmisor()); }