public void UpdateTag(TagViewModel tag) { if (tag.IsNew) { TagService.BeginCreateTag(Customer.Id, tag.Tag, EndCreateTag, null); } else { TagService.BeginUpdateTag(tag.Tag, Customer.Id, EndUpdateTag, null); } }
public void CreateTag(TagViewModel tag) { TagService.BeginCreateTag(Customer.Id, tag.Tag, EndCreateTag, null); }