예제 #1
0
 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);
     }
 }
예제 #2
0
 public void CreateTag(TagViewModel tag)
 {
     TagService.BeginCreateTag(Customer.Id, tag.Tag, EndCreateTag, null);
 }