Exemplo n.º 1
0
        public void TagOperation(TagViewModel tag)
        {
            _newTag = tag.Tag;

            TagService.BeginTagOperation(Operation.Id, tag.Tag.Id,EndTagOperation,null);
        }
Exemplo n.º 2
0
 //New tag is not yet persisted.
 public bool CanRemoveTag(TagViewModel tag)
 {
     return(!tag.IsNew);
 }
Exemplo n.º 3
0
 public bool CanTagOperation(TagViewModel tag)
 {
     return true;
 }
Exemplo n.º 4
0
 public void RemoveTag(TagViewModel tag)
 {
     TagService.BeginRemoveTag(tag.Id, Customer.Id, EndRemoveTag, null);
 }
Exemplo n.º 5
0
 public bool CanUpdateTag(TagViewModel tag)
 {
     return(true);
 }
Exemplo n.º 6
0
 public void CreateTag(TagViewModel tag)
 {
     TagService.BeginCreateTag(Customer.Id, tag.Tag, EndCreateTag, null);
 }
Exemplo n.º 7
0
 public bool CanTagOperation(TagViewModel tag)
 {
     return(true);
 }
Exemplo n.º 8
0
        public void TagOperation(TagViewModel tag)
        {
            _newTag = tag.Tag;

            TagService.BeginTagOperation(Operation.Id, tag.Tag.Id, EndTagOperation, null);
        }