InventoryEventFacade.java 361 Bytes
package fi.insomnia.bortal.facade;

import javax.ejb.LocalBean;
import javax.ejb.Stateless;

import fi.insomnia.bortal.model.InventoryEvent;

@Stateless
@LocalBean
public class InventoryEventFacade extends IntegerPkGenericFacade<InventoryEvent> {

	public InventoryEventFacade() {
		super(InventoryEvent.class);
		// TODO Auto-generated constructor stub
	}


}