VideoRentalService.country.Createcountry C# (CSharp) Method

Createcountry() public static method

Create a new country object.
public static Createcountry ( global country_id, global country1, global last_update ) : country
country_id global Initial value of the country_id property.
country1 global Initial value of the country1 property.
last_update global Initial value of the last_update property.
return country
        public static country Createcountry(global::System.Int32 country_id, global::System.String country1, global::System.DateTime last_update)
        {
            country country = new country();
            country.country_id = country_id;
            country.country1 = country1;
            country.last_update = last_update;
            return country;
        }