public void MapBOToModel()
        {
            var             mapper = new BOLConfigurationMapper();
            BOConfiguration bo     = new BOConfiguration();

            bo.SetProperties("A", "A");
            ApiConfigurationResponseModel response = mapper.MapBOToModel(bo);

            response.Id.Should().Be("A");
            response.JSON.Should().Be("A");
        }
        public void MapBOToEF()
        {
            var mapper = new DALConfigurationMapper();
            var bo     = new BOConfiguration();

            bo.SetProperties("A", "A");

            Configuration response = mapper.MapBOToEF(bo);

            response.Id.Should().Be("A");
            response.JSON.Should().Be("A");
        }
        public void MapBOToModelList()
        {
            var             mapper = new BOLConfigurationMapper();
            BOConfiguration bo     = new BOConfiguration();

            bo.SetProperties("A", "A");
            List <ApiConfigurationResponseModel> response = mapper.MapBOToModel(new List <BOConfiguration>()
            {
                { bo }
            });

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