public DecoratorAttribute(DecoratorUsage usage)
 {
     this.Usage = usage;
     this.MethodName = null;
 }
 public DecoratorAttribute(DecoratorUsage usage, string methodName)
 {
     this.Usage = usage;
     this.MethodName = methodName;
 }