public void MapEntityToModel()
        {
            var      mapper = new DALVoteTypeMapper();
            VoteType item   = new VoteType();

            item.SetProperties(1, "A");
            ApiVoteTypeServerResponseModel response = mapper.MapEntityToModel(item);

            response.Id.Should().Be(1);
            response.Name.Should().Be("A");
        }
        public void MapEntityToModelList()
        {
            var      mapper = new DALVoteTypeMapper();
            VoteType item   = new VoteType();

            item.SetProperties(1, "A");
            List <ApiVoteTypeServerResponseModel> response = mapper.MapEntityToModel(new List <VoteType>()
            {
                { item }
            });

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