MySql.Data.Entity.Tests.customer.Createcustomer C# (CSharp) 메소드

Createcustomer() 공개 정적인 메소드

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