예제 #1
0
        public static List <TipoDocumentopAfipN> ObtenerTipoDocumentoAfip(Entidades.SuperEntity p_SE)
        {
            Datos.AfipD t_AFIP = new Datos.AfipD();
            DataTable   t_DT   = null;

            try
            {
                t_DT = t_AFIP.ObtenerTipoDocumentoAfip();
            }
            catch (Exception EXC)
            {
                Entidades.Catcher.Catcher.Agregar_Error("AfipS", EXC.StackTrace);
            }
            if (t_DT != null)
            {
                List <TipoDocumentopAfipN> t_listaafip = new List <TipoDocumentopAfipN>();

                for (int a = 0; a < t_DT.Rows.Count; a++)
                {
                    int    t_id        = Convert.ToInt32(t_DT.Rows[a]["Id"].ToString());
                    int    t_idcatafip = Convert.ToInt32(t_DT.Rows[a]["IdTipoDocumento"].ToString());
                    String t_nombre    = t_DT.Rows[a]["Nombre"].ToString();
                    t_listaafip.Add(new TipoDocumentopAfipN(t_id, t_idcatafip, t_nombre));
                }
                return(t_listaafip);
            }
            else
            {
                return(null);
            }
        }
예제 #2
0
파일: AfipS.cs 프로젝트: pernengo/AutoForm
        public static List<TipoDocumentopAfipN> ObtenerTipoDocumentoAfip(Entidades.SuperEntity p_SE)
        {
            Datos.AfipD t_AFIP = new Datos.AfipD();
            DataTable t_DT = null;
            try
            {
                t_DT = t_AFIP.ObtenerTipoDocumentoAfip();
            }
            catch (Exception EXC)
            {
                Entidades.Catcher.Catcher.Agregar_Error("AfipS", EXC.StackTrace);
            }
            if (t_DT != null)
            {

                List<TipoDocumentopAfipN> t_listaafip = new List<TipoDocumentopAfipN>();

                for (int a = 0; a < t_DT.Rows.Count; a++)
                {
                    int t_id = Convert.ToInt32(t_DT.Rows[a]["Id"].ToString());
                    int t_idcatafip = Convert.ToInt32(t_DT.Rows[a]["IdTipoDocumento"].ToString());
                    String t_nombre = t_DT.Rows[a]["Nombre"].ToString();
                    t_listaafip.Add(new TipoDocumentopAfipN(t_id, t_idcatafip, t_nombre));
                }
                return t_listaafip;

            }
            else { return null; }
        }