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

com.minlessika.membership.integration.ContactPerson Maven / Gradle / Ivy

Go to download

It's a library to help developers to integration membership services to another project.

There is a newer version: 0.3.1
Show newest version
package com.minlessika.membership.integration;

import java.time.MonthDay;

public interface ContactPerson extends Contact {

	MonthDay birthDay();

	Integer birthYear();

	String birthPlace();

	Sex sex();

	String position();

	String civility();

	Double shoeSize();

	Double height();
	
	void update(
		String name, MonthDay birthDate, Integer birthYear, String birthPlace, Sex sex, String position, String civility, String photo,
		String addressLine1, String addressLine2, String phone1, String phone2, String whatsApp, String email, String city,
		String stateOrProvince, Double shoeSize, Double height
	);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy