public virtual ApiDashboardConfigurationResponseModel MapBOToModel(
            BODashboardConfiguration boDashboardConfiguration)
        {
            var model = new ApiDashboardConfigurationResponseModel();

            model.SetProperties(boDashboardConfiguration.Id, boDashboardConfiguration.IncludedEnvironmentIds, boDashboardConfiguration.IncludedProjectIds, boDashboardConfiguration.IncludedTenantIds, boDashboardConfiguration.IncludedTenantTags, boDashboardConfiguration.JSON);

            return(model);
        }
        public void MapResponseToRequest()
        {
            var mapper = new ApiDashboardConfigurationModelMapper();
            var model  = new ApiDashboardConfigurationResponseModel();

            model.SetProperties("A", "A", "A", "A", "A", "A");
            ApiDashboardConfigurationRequestModel response = mapper.MapResponseToRequest(model);

            response.IncludedEnvironmentIds.Should().Be("A");
            response.IncludedProjectIds.Should().Be("A");
            response.IncludedTenantIds.Should().Be("A");
            response.IncludedTenantTags.Should().Be("A");
            response.JSON.Should().Be("A");
        }