-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Buscar informações de consultas(Obs. Começo do desenvolvimento)
- Loading branch information
1 parent
f9d5be7
commit 4231ae4
Showing
7 changed files
with
136 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
SIHV/src/main/java/com/lades/sihv/controller/ConsultaBusca.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package com.lades.sihv.controller; | ||
|
||
import com.lades.sihv.model.Animais; | ||
import com.lades.sihv.model.Cliente; | ||
import com.lades.sihv.model.Consulta; | ||
import com.lades.sihv.model.Pessoa; | ||
|
||
/** | ||
* | ||
* @author thiberius | ||
*/ | ||
public class ConsultaBusca { | ||
private Pessoa pessoa; | ||
private Cliente cliente; | ||
private Animais animais; | ||
private Consulta consulta; | ||
|
||
|
||
public void geraObj(){ | ||
animais = new Animais(); | ||
pessoa = new Pessoa(); | ||
consulta = new Consulta(); | ||
} | ||
|
||
|
||
|
||
|
||
public Pessoa getPessoa() { | ||
return pessoa; | ||
} | ||
|
||
public void setPessoa(Pessoa pessoa) { | ||
this.pessoa = pessoa; | ||
} | ||
|
||
public Cliente getCliente() { | ||
return cliente; | ||
} | ||
|
||
public void setCliente(Cliente cliente) { | ||
this.cliente = cliente; | ||
} | ||
|
||
public Animais getAnimais() { | ||
return animais; | ||
} | ||
|
||
public void setAnimais(Animais animais) { | ||
this.animais = animais; | ||
} | ||
|
||
public Consulta getConsulta() { | ||
return consulta; | ||
} | ||
|
||
public void setConsulta(Consulta consulta) { | ||
this.consulta = consulta; | ||
} | ||
|
||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters