public virtual BOTags MapEFToBO(
            Tags ef)
        {
            var bo = new BOTags();

            bo.SetProperties(
                ef.Id,
                ef.Count,
                ef.ExcerptPostId,
                ef.TagName,
                ef.WikiPostId);
            return(bo);
        }
        public virtual BOTags MapModelToBO(
            int id,
            ApiTagsRequestModel model
            )
        {
            BOTags boTags = new BOTags();

            boTags.SetProperties(
                id,
                model.Count,
                model.ExcerptPostId,
                model.TagName,
                model.WikiPostId);
            return(boTags);
        }