br.com.objectos.way.duplicata.DuplicataCedente Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of way-duplicata Show documentation
Show all versions of way-duplicata Show documentation
Geração de duplicatas. Simples.
The newest version!
/*
* DuplicataCedente.java criado em 07/05/2013
*
* Propriedade de Objectos Fábrica de Software LTDA.
* Reprodução parcial ou total proibida.
*/
package br.com.objectos.way.duplicata;
import br.com.objectos.way.base.br.CadastroRFB;
import br.com.objectos.way.base.br.Cep;
import br.com.objectos.way.base.br.Estado;
/**
* @author [email protected] (Edenir Norberto Anschau)
*/
public interface DuplicataCedente {
String getNome();
String getRazaoSocial();
String getTelefone();
String getSite();
CadastroRFB getCadastroRFB();
String getEndereco();
String getBairro();
Cep getCep();
String getCidade();
Estado getEstado();
}