public void CanGetAllTagTypes()
        {
            TagTypeRepository repo = new TagTypeRepository();
            TagType tagType1 = new TagType { Description = "tt1" };
            TagType tagType2 = new TagType { Description = "tt2" };
            repo.Add(tagType1);
            repo.Add(tagType2);

            TagType[] tagTypes = repo.GetAll().ToArray();

            Assert.True(tagTypes.Contains(tagType1));
            Assert.True(tagTypes.Contains(tagType2));
        }