gerador-sadt
Version:
Gerador de guias SP/SADT e Consulta em PDF seguindo os padrões estipulados pela ANS (Agência Nacional de Saúde).
22 lines (18 loc) • 642 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
var Atendimento = exports.Atendimento = function Atendimento(tipoAtendimento, indicacaoAcidente, tipoConsulta, tipoSaida, regime, ocupacional) {
_classCallCheck(this, Atendimento);
this.tipoAtendimento = tipoAtendimento;
this.indicacaoAcidente = indicacaoAcidente;
this.tipoConsulta = tipoConsulta;
this.tipoSaida = tipoSaida;
this.regime = regime;
this.ocupacional = ocupacional;
};