Example #1
0
 private void VerFontesDeRenda_Load(object sender, EventArgs e)
 {
     if (locatario)
     {
     }
     else
     {
         CrudFonteDeRenda crudFonte = new CrudFonteDeRenda(inicio);
         crudFonte.exibir(this);
     }
 }
Example #2
0
        private void btnVerFonteRenda_Click(object sender, EventArgs e)
        {
            ValidacaoGeral validacaoGeral = new ValidacaoGeral();
            bool           checar         = validacaoGeral.validaDatagrid(this);

            if (checar)
            {
                crudFonte = new CrudFonteDeRenda(inicio);
                crudFonte.exibir(this);
            }
        }