Exemple #1
0
 public void insRandData(int count)
 {
     for (int i = 0; i < count; i++)
     {
         listCust.Add(new Customer(
                          rand.getName(),
                          rand.getAge(),
                          rand.getTel(),
                          rand.getAddr(),
                          rand.getGender()));
     }
 }
 public void InsRandDate_cus(int count) // int count 갯수만큼 정보가 나옴.
 {
     for (int i = 0; i < count; i++)
     {
         listCust.Add(new Customer(rand.getName(), rand.getAge(), rand.getTel(), rand.getAddr(), rand.getGender()));
     }
 }