Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Antti Väyrynen / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • facade
  • EventMapFacade.java
  • Tuomas Riihimäki's avatar
    Add product limitation for places. · 4df4dc08
    When product is billed there should be created new groupMembership (not implemented yet)
    When limitation 'PLACES' is added for product, it should check how many places have been reserved
    ie how mony groupmemberships with that product have been created and limit bought places.
    Tuomas Riihimäki committed Jul 18, 2014
    4df4dc08
EventMapFacade.java 284 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package fi.codecrew.moya.facade;

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

import fi.codecrew.moya.model.EventMap;

@Stateless
@LocalBean
public class EventMapFacade extends IntegerPkGenericFacade<EventMap> {

	public EventMapFacade() {
		super(EventMap.class);
	}

}