public void Update(SEOToolUpdate seoToolUpdate)
        {
            var seoTool = _seoToolRepo.Find(seoToolUpdate.Id);

            seoTool.FocusKeyword    = seoToolUpdate.FocusKeyword;
            seoTool.MetaDescription = seoToolUpdate.MetaDescription;
            seoTool.SEOTitle        = seoToolUpdate.SEOTitle;

            _seoToolRepo.Update(seoTool);
        }
        public void Update(SEOToolUpdate seoToolUpdate)
        {
            var seoTool = _seoToolRepo.Find(seoToolUpdate.Id);

            seoTool.FocusKeyword = seoToolUpdate.FocusKeyword;
            seoTool.MetaDescription = seoToolUpdate.MetaDescription;
            seoTool.SEOTitle = seoToolUpdate.SEOTitle;

            _seoToolRepo.Update(seoTool);
        }
 public void Add(SEOToolUpdate seoToolUpdate)
 {
     var seoTool = new SEOTool
       {
           FocusKeyword = seoToolUpdate.FocusKeyword,
           MetaDescription = seoToolUpdate.MetaDescription,
           SEOTitle = seoToolUpdate.SEOTitle
       };
     _seoToolRepo.Add(seoTool);
 }
        public void Add(SEOToolUpdate seoToolUpdate)
        {
            var seoTool = new SEOTool
            {
                FocusKeyword    = seoToolUpdate.FocusKeyword,
                MetaDescription = seoToolUpdate.MetaDescription,
                SEOTitle        = seoToolUpdate.SEOTitle
            };

            _seoToolRepo.Add(seoTool);
        }