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