コード例 #1
0
        public Dto_CountryListNode createCountryListTwo()
        {
            List <int> Code = new List <int>()
            {
                1, 2, 3, 4
            };

            List <string> CountryName = new List <string>()
            {
                "Japón", "Israel", "Arabia Saudita", "Corea del Sur"
            };

            List <int> NumberHospitals = new List <int>()
            {
                1000, 800, 400, 1400
            };

            List <string> ProvenanceList = new List <string>()
            {
                "List Two", "List Two", "List Two", "List Two"
            };

            Dao_CountryList     obj_dao_Country = new Dao_CountryList();
            Dto_CountryListNode countryListNode = obj_dao_Country.createCountryList(Code, CountryName, NumberHospitals, ProvenanceList);

            return(countryListNode);
        }
コード例 #2
0
        public Dto_CountryListNode createCountryListOne()
        {
            List <int> Code = new List <int>()
            {
                1, 2, 3, 4, 5, 6
            };

            List <string> CountryName = new List <string>()
            {
                "Estados Unidos", "Rusia", "China", "Alemania", "Reino Unido", "Francia"
            };

            List <int> NumberHospitals = new List <int>()
            {
                1200, 500, 900, 1500, 475, 1010
            };

            List <string> ProvenanceList = new List <string>()
            {
                "List One", "List One", "List One", "List One", "List One", "List One"
            };

            Dao_CountryList     obj_dao_Country = new Dao_CountryList();
            Dto_CountryListNode countryListNode = obj_dao_Country.createCountryList(Code, CountryName, NumberHospitals, ProvenanceList);

            return(countryListNode);
        }