示例#1
0
        public bool ConsultarExistenciaCuit(int id)
        {
            var persona = DaoProvider.GetDaoPersonaJuridica().GetById(id);

            if (string.IsNullOrEmpty(persona.CUIT))
            {
                return(false);
            }

            return(true);
        }