Tests.Models.Person.Person C# (CSharp) Method

Person() public method

public Person ( bool prefill = false, string id = "123" ) : System.Collections.Generic
prefill bool
id string
return System.Collections.Generic
        public Person(bool prefill = false, string id = "123")
        {
            Identifier = id;
            if (!prefill) return;

            FirstName = "John";
            LastName = "Smith";
            Age = 34;
            NumberOfLegs = 4;
            Job = Get.Company();
            FamilyMembers = new List<Person>();
            Friends = new List<Person>();
        }
Person