Exemple #1
0
        public void MapBOToModel()
        {
            var      mapper = new BOLTenantMapper();
            BOTenant bo     = new BOTenant();

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

            response.Id.Should().Be(1);
            response.Name.Should().Be("A");
        }
        public void MapBOToEF()
        {
            var mapper = new DALTenantMapper();
            var bo     = new BOTenant();

            bo.SetProperties(1, "A");

            Tenant response = mapper.MapBOToEF(bo);

            response.Id.Should().Be(1);
            response.Name.Should().Be("A");
        }
Exemple #3
0
        public void MapBOToModelList()
        {
            var      mapper = new BOLTenantMapper();
            BOTenant bo     = new BOTenant();

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

            response.Count.Should().Be(1);
        }
        public void MapBOToModel()
        {
            var      mapper = new BOLTenantMapper();
            BOTenant bo     = new BOTenant();

            bo.SetProperties("A", BitConverter.GetBytes(1), "A", "A", "A", "A");
            ApiTenantResponseModel response = mapper.MapBOToModel(bo);

            response.DataVersion.Should().BeEquivalentTo(BitConverter.GetBytes(1));
            response.Id.Should().Be("A");
            response.JSON.Should().Be("A");
            response.Name.Should().Be("A");
            response.ProjectIds.Should().Be("A");
            response.TenantTags.Should().Be("A");
        }