MySql.Data.Entity.Tests.myedition.Createmyedition C# (CSharp) Method

Createmyedition() public static method

Create a new myedition object.
public static Createmyedition ( global id, global title ) : myedition
id global Initial value of the Id property.
title global Initial value of the Title property.
return myedition
        public static myedition Createmyedition(global::System.Int32 id, global::System.String title)
        {
            myedition myedition = new myedition();
            myedition.Id = id;
            myedition.Title = title;
            return myedition;
        }