public void InsRandDate_sell(int count) // int count 갯수만큼 정보가 나옴.
 {
     for (int i = 0; i < count; i++)
     {
         listSel.Add(new Seller(rand.getName(),
                                rand.getTel(),
                                rand.getJikwi(),
                                rand.getOffice()));
     }
 }
示例#2
0
 public void insRandData(int count)
 {
     for (int i = 0; i < count; i++)
     {
         listSell.Add(new Seller(
                          rand.getName(),
                          rand.getTel(),
                          rand.getJikwi(),
                          rand.getOffice()));
     }
 }