protected void Cadastrar(object sender, EventArgs e) { Lancamento l = FabricaLancamento.fabricarLancamento(this.rbtTipoLancamento.SelectedValue, this.uplComprovante.PostedFile.InputStream); l.descricao = this.txtDescricao.Text; l.valor = Decimal.Parse(this.txtValor.Text); l.data = this.calData.SelectedDate; l.registrar(); this.lblMensagem.Text = "Registrado com sucesso!"; this.CarregarGrid(); }