public void IdIsInstanceOfInteger()
        {
            IGroupOfReligion gr = new GroupOfReligion();

            var id = gr.Id;

            Assert.IsInstanceOf <int>(id);
        }
        public void IsInstanceOfIGroupOfReligion()
        {
            var type = typeof(IGroupOfReligion);

            var groupOfReligion = new GroupOfReligion();

            Assert.IsInstanceOf(type, groupOfReligion);
        }