public void MapEFToBO()
        {
            var       mapper = new DALPostTypesMapper();
            PostTypes entity = new PostTypes();

            entity.SetProperties(1, "A");

            BOPostTypes response = mapper.MapEFToBO(entity);

            response.Id.Should().Be(1);
            response.Type.Should().Be("A");
        }
        public void MapBOToEF()
        {
            var mapper = new DALPostTypesMapper();
            var bo     = new BOPostTypes();

            bo.SetProperties(1, "A");

            PostTypes response = mapper.MapBOToEF(bo);

            response.Id.Should().Be(1);
            response.Type.Should().Be("A");
        }
        public void MapEFToBOList()
        {
            var       mapper = new DALPostTypesMapper();
            PostTypes entity = new PostTypes();

            entity.SetProperties(1, "A");

            List <BOPostTypes> response = mapper.MapEFToBO(new List <PostTypes>()
            {
                entity
            });

            response.Count.Should().Be(1);
        }