public void TagOperation(TagViewModel tag) { _newTag = tag.Tag; TagService.BeginTagOperation(Operation.Id, tag.Tag.Id,EndTagOperation,null); }
//New tag is not yet persisted. public bool CanRemoveTag(TagViewModel tag) { return(!tag.IsNew); }
public bool CanTagOperation(TagViewModel tag) { return true; }
public void RemoveTag(TagViewModel tag) { TagService.BeginRemoveTag(tag.Id, Customer.Id, EndRemoveTag, null); }
public bool CanUpdateTag(TagViewModel tag) { return(true); }
public void CreateTag(TagViewModel tag) { TagService.BeginCreateTag(Customer.Id, tag.Tag, EndCreateTag, null); }
public bool CanTagOperation(TagViewModel tag) { return(true); }
public void TagOperation(TagViewModel tag) { _newTag = tag.Tag; TagService.BeginTagOperation(Operation.Id, tag.Tag.Id, EndTagOperation, null); }