AtomTest.java
Dosyayı İndir
package com.godoro.atom.test;
import com.godoro.atom.business.*;
import com.godoro.atom.entity.*;
import java.util.*;
public class AtomTest {
public static void main(String[] args) {
List<Customer> customerList=new ArrayList<Customer>();
customerList.add(new Customer(0,"İzzet Altınmeşe 6",6000));
customerList.add(new Customer(0,"Ümit Tokcan 6",4500));
customerList.add(new Customer(0,"Belkıs Akkale 6",4350));
CustomerBusiness customerCreator=new CustomerBusiness();
customerCreator.createCustomerList(customerList);
}
}
Dosyayı İndir