Ejemplo n.º 1
0
        public static List <Asn_transporte_sello> AsnTranspSelloLstByAsn(int id_asn)
        {
            List <Asn_transporte_sello> lst = new List <Asn_transporte_sello>();

            try
            {
                Asn_transporte_selloMng oMng = new Asn_transporte_selloMng()
                {
                    O_Asn_transporte_sellos = new Asn_transporte_sello()
                    {
                        Id_asn = id_asn
                    }
                };
                oMng.fillLstByAsn();
                lst = oMng.Lst;
            }
            catch
            {
                throw;
            }
            return(lst);
        }