Ejemplo n.º 1
0
        public void MapModelToBO()
        {
            var mapper = new BOLCountryRequirementMapper();
            ApiCountryRequirementRequestModel model = new ApiCountryRequirementRequestModel();

            model.SetProperties(1, "A");
            BOCountryRequirement response = mapper.MapModelToBO(1, model);

            response.CountryId.Should().Be(1);
            response.Detail.Should().Be("A");
        }
Ejemplo n.º 2
0
        public void MapBOToModel()
        {
            var mapper = new BOLCountryRequirementMapper();
            BOCountryRequirement bo = new BOCountryRequirement();

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

            response.CountryId.Should().Be(1);
            response.Detail.Should().Be("A");
            response.Id.Should().Be(1);
        }
Ejemplo n.º 3
0
        public void MapBOToModelList()
        {
            var mapper = new BOLCountryRequirementMapper();
            BOCountryRequirement bo = new BOCountryRequirement();

            bo.SetProperties(1, 1, "A");
            List <ApiCountryRequirementResponseModel> response = mapper.MapBOToModel(new List <BOCountryRequirement>()
            {
                { bo }
            });

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