public void MapEFToBOList()
        {
            var   mapper = new DALVotesMapper();
            Votes entity = new Votes();

            entity.SetProperties(1, DateTime.Parse("1/1/1987 12:00:00 AM"), 1, 1, 1, 1);

            List <BOVotes> response = mapper.MapEFToBO(new List <Votes>()
            {
                entity
            });

            response.Count.Should().Be(1);
        }
Exemple #2
0
        public virtual Votes MapBOToEF(
            BOVotes bo)
        {
            Votes efVotes = new Votes();

            efVotes.SetProperties(
                bo.BountyAmount,
                bo.CreationDate,
                bo.Id,
                bo.PostId,
                bo.UserId,
                bo.VoteTypeId);
            return(efVotes);
        }
        public void MapEFToBO()
        {
            var   mapper = new DALVotesMapper();
            Votes entity = new Votes();

            entity.SetProperties(1, DateTime.Parse("1/1/1987 12:00:00 AM"), 1, 1, 1, 1);

            BOVotes response = mapper.MapEFToBO(entity);

            response.BountyAmount.Should().Be(1);
            response.CreationDate.Should().Be(DateTime.Parse("1/1/1987 12:00:00 AM"));
            response.Id.Should().Be(1);
            response.PostId.Should().Be(1);
            response.UserId.Should().Be(1);
            response.VoteTypeId.Should().Be(1);
        }