Esempio n. 1
0
        public bool IncluirEmpresa(EmpresaInModelo EmpInc = null)
        {
            bool       ret    = false;
            EmpresaDAL empDAL = new EmpresaDAL(this.Conexao);

            ret = empDAL.IncluirEmpresa(EmpInc);

            return(ret);
        }