!NAMESPACE!.Models.Country.Country C# (CSharp) Method

Country() public method

public Country ( int id, string name )
id int
name string
		public Country(int id, string name)
		{
			this.id = id;
			this.name = name;
		}

Same methods

Country::Country ( )
Country