Exemplo n.º 1
0
        public Tagger(ITagTarget target, ITagStorageAdapter storageAdapter)
        {
            _tagTarget = target;
            _tagStorageAdapter = storageAdapter;

            _tagTargetReference = new TagTargetReference { FullTypeName = _tagTarget.GetType().FullName, Id = _tagTarget.Id };

            _tagMappings = _tagStorageAdapter.LoadTagMappingsFor(_tagTargetReference);
        }
Exemplo n.º 2
0
 public TaggedTypeNameFinder(ITagStorageAdapter storageAdapter)
 {
     _storageAdapter = storageAdapter;
 }
Exemplo n.º 3
0
 public TagTargetReferenceFinder(ITagStorageAdapter storageAdapter)
 {
     _storageAdapter = storageAdapter;
 }