MySql.Data.Entity.Tests.customer.Createcustomer C# (CSharp) Method

Createcustomer() public static method

Create a new customer object.
public static Createcustomer ( int id ) : customer
id int Initial value of Id.
return customer
        public static customer Createcustomer(int id)
        {
            customer customer = new customer();
            customer.Id = id;
            return customer;
        }
        /// <summary>