MySql.Data.Entity.Tests.Child.CreateChild C# (CSharp) Method

CreateChild() public static method

Create a new Child object.
public static CreateChild ( global id, global employeeID, global lastName, global firstName, global modified ) : Child
id global Initial value of the Id property.
employeeID global Initial value of the EmployeeID property.
lastName global Initial value of the LastName property.
firstName global Initial value of the FirstName property.
modified global Initial value of the Modified property.
return Child
        public static Child CreateChild(global::System.Int64 id, global::System.Int32 employeeID, global::System.String lastName, global::System.String firstName, global::System.DateTime modified)
        {
            Child child = new Child();
            child.Id = id;
            child.EmployeeID = employeeID;
            child.LastName = lastName;
            child.FirstName = firstName;
            child.Modified = modified;
            return child;
        }