Ejemplo n.º 1
0
 public virtual bool IsCategory(ITermCategory category)
 {
     if (category == null)
     {
         return(false);
     }
     return(IsCategory(category.GetType()));
 }
Ejemplo n.º 2
0
        public ITermCategory As(ITermCategory category)
        {
            if (category == null)
            {
                return(this);
            }

            if (Term2Decorate == null)
            {
                Term2Decorate = category;
                return(this);
            }

            Term2Decorate.As(category);
            return(this);
        }
Ejemplo n.º 3
0
 public ITermCategory As(ITermCategory category)
 {
     return(_information.As(category));
 }
Ejemplo n.º 4
0
 public bool IsCategory(ITermCategory category)
 {
     return(_information.IsCategory(category));
 }
Ejemplo n.º 5
0
 public Espionage(ITermCategory information = null)
 {
     _information = information ?? new NationalDefenseInformation();
 }
Ejemplo n.º 6
0
 public virtual ITermCategory As(ITermCategory category)
 {
     return(_termCategory.As(category));
 }
Ejemplo n.º 7
0
 public virtual bool IsCategory(ITermCategory category)
 {
     return(_termCategory.IsCategory(category));
 }