示例#1
0
        static void Main(string[] args)
        {
            IHumanFactory humanFactory = new HumanFactory();
            var           people       = humanFactory.Bind().ToList();

            foreach (var human in people)
            {
                Console.WriteLine($"{human.FirstName} {human.LastName}");
            }

            people.GenerateRandomWeight(60, 120).GenerateRandomBirthDate();
        }