コード例 #1
0
        public void MapEFToBOList()
        {
            var   mapper = new DALChainMapper();
            Chain entity = new Chain();

            entity.SetProperties(1, Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), 1, "A", 1);

            List <BOChain> response = mapper.MapEFToBO(new List <Chain>()
            {
                entity
            });

            response.Count.Should().Be(1);
        }
コード例 #2
0
        public void MapEFToBO()
        {
            var   mapper = new DALChainMapper();
            Chain entity = new Chain();

            entity.SetProperties(1, Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), 1, "A", 1);

            BOChain response = mapper.MapEFToBO(entity);

            response.ChainStatusId.Should().Be(1);
            response.ExternalId.Should().Be(Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"));
            response.Id.Should().Be(1);
            response.Name.Should().Be("A");
            response.TeamId.Should().Be(1);
        }
コード例 #3
0
        public void MapBOToEF()
        {
            var mapper = new DALChainMapper();
            var bo     = new BOChain();

            bo.SetProperties(1, 1, Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), "A", 1);

            Chain response = mapper.MapBOToEF(bo);

            response.ChainStatusId.Should().Be(1);
            response.ExternalId.Should().Be(Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"));
            response.Id.Should().Be(1);
            response.Name.Should().Be("A");
            response.TeamId.Should().Be(1);
        }