Beispiel #1
0
 public string CadastrarBoletimOcorrencia(BoletimOcorrencia boletimOcorrencia)
 {
     _boletimOcorrenciaRepository = new BoletimOcorrenciaRepository();
     _boletimOcorrenciaRepository.CadastrarBoletimOcorrencia(boletimOcorrencia);
     return("Boletim cadastrado com sucesso!");
 }
Beispiel #2
0
 public DataTable RetornarIDBoletim()
 {
     _boletimOcorrenciaRepository = new BoletimOcorrenciaRepository();
     return(_boletimOcorrenciaRepository.RetornarIDBoletim());
 }