public void cadastrar(object sender, EventArgs e) { postCnpj = cnpj.Text; postRazaoSocial = razaoSocial.Text; postTel = tel.Text; postCel = cel.Text; postEnd = endereco.Text; postComplemento = complemento.Text; postCep = cep.Text; postDesc = descricao.Value; postZonaAtend = zonaAtendimento.Text; int idCidade = Int32.Parse(cidadesDD.Text); Cidade cid = cidadeDAO.selectCidadePorId(idCidade); if (numero.Text != "") { postNum = Int32.Parse(numero.Text); } else { postNum = 0; } if (qtdFunc.Text != "") { postQtdFunc = Int32.Parse(qtdFunc.Text); } else { postQtdFunc = 0; } string busca = postEnd + ", " + postNum + " " + cid.Nome; double lat = new ApiCoordenadas().pegarLat(busca); double lng = new ApiCoordenadas().pegarLng(busca); MySqlDateTime mysqldt = new MySqlDateTime(DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss")); Empresa emp = new Empresa(1, 1, 1, 1, postCnpj, postRazaoSocial, postTel, postCel, postEnd, postNum, postComplemento, postCep, lat, lng, cid, mysqldt, postDesc, postQtdFunc, 0, 0, 0, 0, 80, 0, postZonaAtend, mysqldt, 1); EmpresaCadastroValidator validator = new EmpresaCadastroValidator(); ValidationResult result = validator.Validate(emp); if (result.IsValid) { new EmpresaDAO().insertEmpresa(emp); emp = new EmpresaDAO().selectEmpPorCNPJ(postCnpj); Session["sIdEmp"] = emp.Id; EmpresaSaldo saldo = new EmpresaSaldo(0, emp.Id, 0, 0, 0); new EmpresaSaldoDAO().insertEmpSaldo(saldo); Response.Redirect("userEmpCadastro.aspx?acao=primCad"); } else { mensagem = result.ToString(" & "); } }
protected void Page_Load(object sender, EventArgs e) { if (Session["sIdEmp"] == null) { Response.Redirect("loginEmpresa.aspx?sit=1&msg=sessaoInvalida"); } int SS_empresa = (int)Session["sIdEmp"]; //puxa lista do banco de dados servsDB = new ServicoDAO().selectServsEmpExePendFechado(SS_empresa); //puxa saldo da empresa empSaldo = new EmpresaSaldoDAO().selectSaldoEmpresa(SS_empresa); }
public void atualizarSaldo(object sender, EventArgs e) { if (Session["sIdEmp"] == null) { Response.Redirect("loginEmpresa.aspx?sit=1&msg=sessaoInvalida"); } int SS_empresa = (int)Session["sIdEmp"]; double val = double.Parse(valor.Value); empSaldo = new EmpresaSaldoDAO().selectSaldoEmpresa(SS_empresa); empSaldo.SaldoLiberado = empSaldo.SaldoLiberado - val; new EmpresaSaldoDAO().updateEmpSaldo(empSaldo); }