All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deephacks.graphene.CountryService Maven / Gradle / Ivy

The newest version!
package org.deephacks.graphene;


import org.deephacks.graphene.cdi.Transaction;

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;

@Transaction
@ApplicationScoped
public class CountryService {

    @Inject
    private EntityRepository repository;

    public void create(Country country) {
        repository.put(country);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy