FlexGridSample.Customer.Customer C# (CSharp) Метод

Customer() публичный Метод

public Customer ( int id ) : System
id int
Результат System
        public Customer(int id)
        {
            ID = id;
            First = GetString(_firstNames);
            Last = GetString(_lastNames);
            CountryID = _rnd.Next() % _countries.Length;
            Active = _rnd.NextDouble() >= .5;
            Hired = DateTime.Today.AddDays(-_rnd.Next(1, 365));
            Money = 50 + _rnd.NextDouble() * 50;
        }

Same methods

Customer::Customer ( ) : System