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

com.evasion.ejb.local.PersonManagerLocal Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.evasion.ejb.local;

import com.evasion.entity.Person;

/**
 *
 * @author sebastien.glon
 */
public interface PersonManagerLocal {

    Person createPerson(Person p);

    void deletePerson(Person p);

    Person updatePerson(Person p);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy