Esempio n. 1
0
        public static bool IsIE(string ie, string uf)
        {
            IE ieBR = new IE(ie, uf);

            return(ieBR.IsValid());
        }
Esempio n. 2
0
        public void TestShouldCreateIEWithUFAsString()
        {
            IE ie = new IE("395.333.85-7", "ES");

            Assert.IsTrue(ie.IsValid());
        }
Esempio n. 3
0
        public static bool IsIE(string ie, int ufIBGE)
        {
            IE ieBR = new IE(ie, ufIBGE);

            return(ieBR.IsValid());
        }
Esempio n. 4
0
        public void TestShouldCreateIEWithUFCode()
        {
            IE ie = new IE("395.333.85-7", 32);

            Assert.IsTrue(ie.IsValid());
        }