public Tag Add(Tag tag) { using (var svc = new ServiceProxyHelper<ITagsService>("TagsService")) { return svc.Proxy.Add(tag); } }
public Tag Add(Tag tag) { try { var dbTags = _tagRepository.Find(a => a.TagName.ToLower() == tag.TagName, null, string.Empty).ToList(); if (dbTags.Count == 0) { var tTag = _tagRepository.Add(TagMapper.ToEntity(tag)); return TagMapper.ToDto(tTag); } return new Tag().GenerateError<Tag>((int) Constants.Error.ValidationError, "Record already exists"); } catch (Exception ex) { throw new BlogException(ex.Message, ex.InnerException); } }
public Tag Add(Tag tag, string authenticationToken) { throw new System.NotImplementedException(); }
public Tag Add(Tag tag) { return _tagsLogic.Add(tag); }