MySql.Data.Entity.Tests.Shelter.CreateShelter C# (CSharp) Method

CreateShelter() public static method

Create a new Shelter object.
public static CreateShelter ( global id ) : Shelter
id global Initial value of the Id property.
return Shelter
        public static Shelter CreateShelter(global::System.Int32 id)
        {
            Shelter shelter = new Shelter();
            shelter.Id = id;
            return shelter;
        }