VideoRentalService.city.Createcity C# (CSharp) Method

Createcity() public static method

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