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

org.devocative.demeter.iservice.IPersonService Maven / Gradle / Ivy

The newest version!
//overwrite
package org.devocative.demeter.iservice;

import org.devocative.demeter.entity.Person;
import org.devocative.demeter.entity.User;
import org.devocative.demeter.vo.filter.PersonFVO;

import java.util.List;

public interface IPersonService {
	void saveOrUpdate(Person entity);

	Person load(Long id);

	List list();

	List search(PersonFVO filter, long pageIndex, long pageSize);

	long count(PersonFVO filter);

	List getCreatorUserList();

	List getModifierUserList();

	// ==============================
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy