Skip to content
Snippets Groups Projects
Commit 52e488ac authored by Emildeon Thevaraj's avatar Emildeon Thevaraj
Browse files

dataservice by ying

parent 4bd757ed
Branches Ying
No related tags found
1 merge request!2Deon
package de.rwth.swc.sqa;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import de.rwth.swc.sqa.model.Customer;
import de.rwth.swc.sqa.model.DiscountCard;
import de.rwth.swc.sqa.model.Ticket;
public class DataService {
public static List<Customer> customerList = new ArrayList<Customer>();
public static Map<Long, List<DiscountCard>> discountCardMap = new HashMap<Long, List<DiscountCard>>();
public static List<Ticket> ticketList = new ArrayList<Ticket>();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment