43
44
45
46
47
48
49
50
51
|
# File 'lib/iesde/model/matricula.rb', line 43
def self.alterar_status(params)
api = Iesde::Api::AlterarStatusMatricula.new(:json, params)
if api.salvo_com_sucesso?
api.msg
else
raise Iesde::Error::WSError.new(api.msg)
end
end
|